Stop Youtube Autoplay

This extension allows you to disable autoplay by default on Youtube

什麼是Stop Youtube Autoplay?

Stop Youtube Autoplay是由Joseph Feld開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to disable autoplay by default on Youtube”。

擴展截圖

screenshot
screenshot

下載Stop Youtube Autoplay擴展crx文件

下載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
官方網址 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
    }
}