YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

Vad är YouTube Everywhere?

YouTube Everywhere är en Chrome-tillägg utvecklad av Jared Frank, och dess huvudfunktion är "Lets YouTube videos play on any page with a YouTube Link".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Everywhere-förlängningens CRX-fil

Ladda ner YouTube Everywhere-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Beskrivning Lets YouTube videos play on any page with a YouTube Link
Filstorlek 104 KB
Antal Installationer 1,000
Aktuell Version 1.3.3
Senast Uppdaterad 2015-08-12
Publiceringsdatum 2015-08-12
Betyg 3.93/5 Totalt 30 Betyg
Utvecklare Jared Frank
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}