YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

YouTube Everywhereคืออะไร?

YouTube Everywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jared Frank และคุณลักษณะหลักของมันคือ "Lets YouTube videos play on any page with a YouTube Link"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Everywhere

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Everywhere ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
คำอธิบาย Lets YouTube videos play on any page with a YouTube Link
ขนาดไฟล์ 104 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.3.3
อัปเดตครั้งล่าสุด 2015-08-12
วันที่เผยแพร่ 2015-08-12
คะแนน 3.93/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา Jared Frank
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            ]
        }
    ]
}