Autoplay Stopper for YouTube
Chrome Extension for Turning off Autoplay on YouTube.
什麼是Autoplay Stopper for YouTube?
Autoplay Stopper for YouTube是由https://fiahfy.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Chrome Extension for Turning off Autoplay on YouTube.”。
擴展截圖
下載Autoplay Stopper for YouTube擴展crx文件
下載Autoplay Stopper for YouTube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- Turn off autoplay on video and channel page. 擴展基本資訊
| 名稱 | |
| ID | nllpbgemclgokfdjneckdfnhjpigolko |
| 官方網址 | https://chromewebstore.google.com/detail/autoplay-stopper-for-yout/nllpbgemclgokfdjneckdfnhjpigolko |
| 簡介 | Chrome Extension for Turning off Autoplay on YouTube. |
| 檔案大小 | 145 KB |
| 安裝次數 | 1,329 |
| 目前版本 | 0.0.3 |
| 更新時間 | 2022-12-31 |
| 上架時間 | 2020-08-28 |
| 評分 | 3.57/5 共 14 次評分 |
| 開發者 | https://fiahfy.blogspot.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"all_frames": false,
"js": [
"content-script.js"
]
}
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"name": "Autoplay Stopper for YouTube",
"description": "Chrome Extension for Turning off Autoplay on YouTube.",
"version": "0.0.3"
} | |