No Shorts
Redirects YouTube Shorts to YouTube videos.
什麼是No Shorts?
No Shorts是由Wock開發的Chrome擴展程式,該擴展的主要功能是“Redirects YouTube Shorts to YouTube videos.”。
擴展截圖
下載No Shorts擴展crx文件
下載No Shorts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
An extension that redirects YouTube short player urls to the normal YouTube player. I created this extension for my own use, as being unable to navigate short videos irritated me, and decided to publish it. It does one job, and only one job. The only permission it needs is tabs, to handle YouTube onsite redirects.
擴展基本資訊
名稱 | No Shorts |
ID | gepjlgfjbeimidbimhjljdncopgelebl |
官方網址 | https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl |
簡介 | Redirects YouTube Shorts to YouTube videos. |
檔案大小 | 12.74 KB |
安裝次數 | 117 |
目前版本 | 1.0 |
更新時間 | 2022-10-27 |
上架時間 | 2022-10-26 |
評分 | 4.20/5 共 5 次評分 |
開發者 | Wock |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "No Shorts", "version": "1.0", "description": "Redirects YouTube Shorts to YouTube videos.", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html" } } |