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. 拡張機能の基本情報
| 名前 | |
| ID | hjfkenebldkfgibelglepinlabpjfbll |
| 公式URL | 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 |
| Eメール | [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\/*"
]
}
]
} | |