YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

What is YouTube Everywhere?

YouTube Everywhere is a Chrome extension developed by Jared Frank, and its main feature is "Lets YouTube videos play on any page with a YouTube Link".

Extension Screenshots

screenshot

Download YouTube Everywhere Extension CRX File

Download YouTube Everywhere extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
Official URL https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Description Lets YouTube videos play on any page with a YouTube Link
File Size 104 KB
Installation Count 1,000
Current Version 1.3.3
Last Updated 2015-08-12
Publish Date 2015-08-12
Rating 3.93/5 Total 30 Ratings
Developer Jared Frank
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}