Fair Use Download
Download videos in pages like youtube for Fair Use purposes.
Cos'è Fair Use Download?
Fair Use Download è un'estensione di Chrome sviluppata da Thann, e la sua funzione principale è "Download videos in pages like youtube for Fair Use purposes.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Fair Use Download
Scarica i file di estensione Fair Use Download in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
In the USA, copyright law explicitly states that the use of copyrighted works: "for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright". The purpose of this extension is to allow users to exercise their right to Fair Use. Powered by play-with-mpv which requires several dependencies, see website for more info. 1. Install this chrome extension 2. Install Python 2 or 3 and pip 3. Install server: `pip install git+git://github.com/thann/play-with-mpv --user` 4. Run server: `play-with-mpv` from the terminal or use the linux shortcut 5. (optional) Autostart on linux: `cp ~/.local/share/applications/thann.play-with-mpv.desktop ~/.config/autostart/`
Informazioni di Base sull'Estensione
Nome | |
ID | fhokdginneihphnneihijgbhbdoehjaj |
URL Ufficiale | https://chrome.google.com/webstore/detail/fair-use-download/fhokdginneihphnneihijgbhbdoehjaj |
Descrizione | Download videos in pages like youtube for Fair Use purposes. |
Dimensione del File | 7.55 KB |
Conteggio Installazioni | 146 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2020-11-16 |
Data di Pubblicazione | 2020-11-16 |
Sviluppatore | Thann |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/thann/play-with-mpv |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fair Use Download", "version": "0.1.0", "manifest_version": 2, "description": "Download videos in pages like youtube for Fair Use purposes.", "homepage_url": "https:\/\/github.com\/thann\/play-with-mpv", "icons": { "128": "fair-use.png" }, "page_action": { "default_icon": "fair-use.png", "default_title": "Fair Use Download" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "activeTab", "contextMenus", "http:\/\/localhost\/" ], "commands": { "launch": { "suggested_key": { "default": "Ctrl+Shift+Space" }, "description": "Fair Use" } }, "options_ui": { "page": "options.html", "open_in_tab": false } } |