Fair Use Download

Download videos in pages like youtube for Fair Use purposes.

Qu'est-ce que Fair Use Download ?

Fair Use Download est une extension Chrome développée par Thann, et sa fonction principale est "Download videos in pages like youtube for Fair Use purposes.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fair Use Download

Téléchargez les fichiers d'extension Fair Use Download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/`                    

Informations de Base sur l'Extension

Nom Fair Use Download Fair Use Download
ID fhokdginneihphnneihijgbhbdoehjaj
URL Officiel https://chrome.google.com/webstore/detail/fair-use-download/fhokdginneihphnneihijgbhbdoehjaj
Description Download videos in pages like youtube for Fair Use purposes.
Taille du Fichier 7.55 KB
Nombre d'Installations 146
Version Actuelle 0.1.0
Dernière Mise à Jour 2020-11-16
Date de Publication 2020-11-16
Développeur Thann
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/thann/play-with-mpv
Langues Prises en Charge 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
    }
}