Stop AutoPlay

This extension is meant to stop all playing videos

Stop AutoPlayคืออะไร?

Stop AutoPlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย roastario และคุณลักษณะหลักของมันคือ "This extension is meant to stop all playing videos"

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

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

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

                                            

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

ชื่อ Stop AutoPlay Stop AutoPlay
ID ablmlhnccodemhiobfclbpicbpljldji
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/stop-autoplay/ablmlhnccodemhiobfclbpicbpljldji
คำอธิบาย This extension is meant to stop all playing videos
ขนาดไฟล์ 6.4 KB
จำนวนการติดตั้ง 76
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2017-10-30
วันที่เผยแพร่ 2017-10-30
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา roastario
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop AutoPlay",
    "description": "This extension is meant to stop all playing videos",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}