Multiple File Downloader のレビュー
Multiple File Downloader 作成者: MSI Developers
合計レビュー数: 8
- 5 段階中 5 の評価Firefox ユーザー 18107874 によるレビュー (2年前)
- 5 段階中 5 の評価Firefox ユーザー 16254569 によるレビュー (5年前)
- 5 段階中 5 の評価Firefox ユーザー 14149478 によるレビュー (7年前)
- 5 段階中 5 の評価Firefox ユーザー 13760273 によるレビュー (7年前)As hinted at the plugin description some website developer knowledge is needed to dynamically add the 'download' attribute to anchor tags.
Open up the browser console and enter:
$$('a[href*=".webm"]').forEach(s => s.setAttribute('download', s.getAttribute('href')))
Above command line will:
- find all anchor tags on a website which contain the '.webm' extension in their 'href' attribute
- then iterate over found anchor tags
- and set the 'download' attribute to each anchor using the value from the 'href' attribute
This makes the toolbar button appear everyone was searching for.
Adjust code to your needs. - 5 段階中 5 の評価Firefox ユーザー 13587062 によるレビュー (7年前)Très pratique. J'utilise un userscript pour ajouter l'attribut "download" sur les lien d'une certaine page et je peut tout récupérer
- 5 段階中 5 の評価Firefox ユーザー 12891859 によるレビュー (7年前)