YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
什麼是YouTube Autoplay Disabler?
YouTube Autoplay Disabler是由Luciano Ratamero開發的Chrome擴展程式,該擴展的主要功能是“Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.”。
擴展截圖
下載YouTube Autoplay Disabler擴展crx文件
下載YouTube Autoplay Disabler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Free and open-sourced alternative for disabling YouTube's autoplay "feature" Checks if YouTube autoplay is on and, if it is, disables it. https://github.com/lucianoratamero/youtube-autoplay-disabler
擴展基本資訊
名稱 | |
ID | mlebignjhimfeggkjhhgbhomibiplmem |
官方網址 | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
簡介 | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
檔案大小 | 366 KB |
安裝次數 | 161 |
目前版本 | 0.2.1 |
更新時間 | 2021-04-29 |
上架時間 | 2018-06-15 |
評分 | 3.12/5 共 17 次評分 |
開發者 | Luciano Ratamero |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Autoplay Disabler", "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.", "version": "0.2.1", "icons": { "128": "icon-small.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": "icon-small.png" } } |