YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

Qu'est-ce que YouTube Everywhere ?

YouTube Everywhere est une extension Chrome développée par Jared Frank, et sa fonction principale est "Lets YouTube videos play on any page with a YouTube Link".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Everywhere

Téléchargez les fichiers d'extension YouTube Everywhere 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

                        YouTube Everywhere adds small YouTube icons next YouTube links on any page. Clicking the icon will expand a small YouTube player to be able to watch the video without having to change pages or open a new tab!                    

Informations de Base sur l'Extension

Nom YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
URL Officiel https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Description Lets YouTube videos play on any page with a YouTube Link
Taille du Fichier 104 KB
Nombre d'Installations 1,000
Version Actuelle 1.3.3
Dernière Mise à Jour 2015-08-12
Date de Publication 2015-08-12
Évaluation 3.93/5 Total 30 Évaluations
Développeur Jared Frank
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Everywhere",
    "description": "Lets YouTube videos play on any page with a YouTube Link",
    "version": "1.3.3",
    "icons": {
        "16": "img\/ytlogo128.png",
        "48": "img\/ytlogo128.png",
        "128": "img\/ytlogo128.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "img\/youtube.png"
    ],
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.reddit.com\/",
                "*:\/\/www.reddit.com\/?*"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ]
        }
    ]
}