No Scroll Tube

This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view

No Scroll Tubeคืออะไร?

No Scroll Tube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hyper Expert และคุณลักษณะหลักของมันคือ "This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No Scroll Tube

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

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

                                            

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

ชื่อ No Scroll Tube No Scroll Tube
ID ejkedopdhafifdnmehiajbocpmlneico
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/no-scroll-tube/ejkedopdhafifdnmehiajbocpmlneico
คำอธิบาย This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view
ขนาดไฟล์ 16.07 KB
จำนวนการติดตั้ง 63
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-07-29
วันที่เผยแพร่ 2016-07-24
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Hyper Expert
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://noscrolltube.com
URL หน้าช่วยเหลือ http://noscrolltube.com
URL หน้านโยบายความเป็นส่วนตัว http://hyperexpert.com
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No Scroll Tube",
    "description": "This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "new.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version": "1.0",
    "browser_action": {
        "default_icon": "images\/icon64.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/pinPlayer.png"
    ]
}