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 年前