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년 전