No YouTube Shorts
Removes all Shorts from YouTube
什麼是No YouTube Shorts?
No YouTube Shorts是由Ben開發的Chrome擴展程式,該擴展的主要功能是“Removes all Shorts from YouTube”。
擴展截圖
下載No YouTube Shorts擴展crx文件
下載No YouTube Shorts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tired of the YouTube Shorts? No problem, this extension has your back and removes them from the YouTube page! New in version 0.6.2: - Bugfixes Bugs? Improvement ideas? Feel free to message me.
擴展基本資訊
名稱 | No YouTube Shorts |
ID | hjfkenebldkfgibelglepinlabpjfbll |
官方網址 | https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll |
簡介 | Removes all Shorts from YouTube |
檔案大小 | 37.34 KB |
安裝次數 | 60,000 |
目前版本 | 0.6.2 |
更新時間 | 2023-09-27 |
上架時間 | 2022-03-03 |
評分 | 4.31/5 共 240 次評分 |
開發者 | Ben |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No YouTube Shorts", "description": "Removes all Shorts from YouTube", "version": "0.6.2", "action": { "default_popup": "popup.html", "default_title": "No YouTube Shorts" }, "manifest_version": 3, "default_locale": "en", "permissions": [ "declarativeContent", "storage", "tabs", "management" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "no-youtube-shorts-content-script.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "service_worker": "no-youtube-shorts-background-script.js" }, "icons": { "48": "assets\/img\/logo48.png", "128": "assets\/img\/logo128.png" }, "web_accessible_resources": [ { "resources": [ "assets\/no-youtube-shorts.css" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |