AutoPlayOff

This extension will find all of the videos on the page that auto play and stop them from doing so

AutoPlayOffคืออะไร?

AutoPlayOff เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aothomas และคุณลักษณะหลักของมันคือ "This extension will find all of the videos on the page that auto play and stop them from doing so"

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

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

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

                        A Chrome extension that allows you to mute or remove videos on websites. This is supposed to target those annoying, intrusive video advertisements. You can use this extension if you still want to support the website by leaving ads, but making sure videos don't popup                    

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

ชื่อ AutoPlayOff AutoPlayOff
ID kkdhilabpimmejlcmfjilfgfkdghkndg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/autoplayoff/kkdhilabpimmejlcmfjilfgfkdghkndg
คำอธิบาย This extension will find all of the videos on the page that auto play and stop them from doing so
ขนาดไฟล์ 669 KB
จำนวนการติดตั้ง 16
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-06-24
วันที่เผยแพร่ 2018-06-24
ผู้พัฒนา aothomas
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoPlayOff",
    "description": "This extension will find all of the videos on the page that auto play and stop them from doing so",
    "version": "1.0",
    "icons": {
        "16": "DisabledSpeakerIcon16.png",
        "48": "DisabledSpeakerIcon48.png",
        "128": "DisabledSpeakerIcon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.slim.min.js",
                "ContentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html"
}