YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

Wat is YouTube Everywhere?

YouTube Everywhere is een Chrome-extensie ontwikkeld door Jared Frank, en de belangrijkste functie is "Lets YouTube videos play on any page with a YouTube Link".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Everywhere

Download YouTube Everywhere-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
Officiële URL https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Beschrijving Lets YouTube videos play on any page with a YouTube Link
Bestandsgrootte 104 KB
Aantal Installaties 1,000
Huidige Versie 1.3.3
Laatst Bijgewerkt 2015-08-12
Publicatiedatum 2015-08-12
Beoordeling 3.93/5 Totaal 30 Beoordelingen
Ontwikkelaar Jared Frank
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}