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 |
公式URL | 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 |
Eメール | [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" } } |