Stop Youtube Autoplay

This extension allows you to disable autoplay by default on Youtube

Stop Youtube Autoplayคืออะไร?

Stop Youtube Autoplay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joseph Feld และคุณลักษณะหลักของมันคือ "This extension allows you to disable autoplay by default on Youtube"

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

screenshot
screenshot

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

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

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

                        This extension automatically disables the feature where Youtube will automatically play the next suggested video. You can just click it off manually, but you need to remember to do that every time and it wastes precious seconds you could be using to watch more Youtube. There is also an option to permanently enable autoplay (if you actually want autoplay on) by flipping the switch in the extension popup.

Feel free to contact me if you find any issues or have any suggestions.

This extension is not intended to stop videos from automatically playing when you open a new tab. It only stops the next suggested video from playing.                    

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

ชื่อ Stop Youtube Autoplay Stop Youtube Autoplay
ID npcghnpganhnghapekiicaeiobnhbbfa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/stop-youtube-autoplay/npcghnpganhnghapekiicaeiobnhbbfa
คำอธิบาย This extension allows you to disable autoplay by default on Youtube
ขนาดไฟล์ 41.84 KB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2018-10-29
วันที่เผยแพร่ 2018-10-29
คะแนน 3.02/5 รวมทั้งหมด 60 คะแนน
ผู้พัฒนา Joseph Feld
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop Youtube Autoplay",
    "short_name": "No Autoplay",
    "description": "This extension allows you to disable autoplay by default on Youtube",
    "version": "1.3",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "matches": [
            "https:\/\/www.youtube.com\/watch*",
            "http:\/\/www.youtube.com\/watch*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}