YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

Apa itu YouTube Everywhere?

YouTube Everywhere adalah ekstensi Chrome yang dikembangkan oleh Jared Frank, dan fitur utamanya adalah "Lets YouTube videos play on any page with a YouTube Link".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Everywhere

Unduh file ekstensi YouTube Everywhere dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
URL Resmi https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Deskripsi Lets YouTube videos play on any page with a YouTube Link
Ukuran File 104 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.3.3
Terakhir Diperbarui 2015-08-12
Tanggal Publikasi 2015-08-12
Penilaian 3.93/5 Total 30 Penilaian
Pengembang Jared Frank
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}