Fair Use Download
Download videos in pages like youtube for Fair Use purposes.
Fair Use Downloadとは何ですか?
Fair Use DownloadはThannによって開発されたChromeの拡張機能で、その主な機能は「Download videos in pages like youtube for Fair Use purposes.」です。
拡張機能のスクリーンショット
Fair Use Download拡張機能のCRXファイルをダウンロード
Fair Use Download拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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/`
拡張機能の基本情報
名前 | |
ID | fhokdginneihphnneihijgbhbdoehjaj |
公式URL | https://chrome.google.com/webstore/detail/fair-use-download/fhokdginneihphnneihijgbhbdoehjaj |
説明 | Download videos in pages like youtube for Fair Use purposes. |
ファイルサイズ | 7.55 KB |
インストール数 | 146 |
現在のバージョン | 0.1.0 |
最終更新日 | 2020-11-16 |
公開日 | 2020-11-16 |
開発者 | Thann |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/thann/play-with-mpv |
対応言語 | 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 } } |