Fair Use Download
Download videos in pages like youtube for Fair Use purposes.
Fair Use Download là gì?
Fair Use Download là một tiện ích mở rộng Chrome được phát triển bởi Thann, và tính năng chính của nó là "Download videos in pages like youtube for Fair Use purposes.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fair Use Download
Tải xuống các tệp mở rộng Fair Use Download dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/`
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fhokdginneihphnneihijgbhbdoehjaj |
URL Chính Thức | https://chrome.google.com/webstore/detail/fair-use-download/fhokdginneihphnneihijgbhbdoehjaj |
Mô tả | Download videos in pages like youtube for Fair Use purposes. |
Kích Thước Tệp | 7.55 KB |
Số Lần Cài Đặt | 146 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2020-11-16 |
Ngày Phát Hành | 2020-11-16 |
Nhà Phát Triển | Thann |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/thann/play-with-mpv |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |