YouTube: No Shorts, No Community, No Nonsense
Disables different sections for a more enjoyable experience.
什麼是YouTube: No Shorts, No Community, No Nonsense?
YouTube: No Shorts, No Community, No Nonsense是由Oh Thomas開發的Chrome擴展程式,該擴展的主要功能是“Disables different sections for a more enjoyable experience.”。
擴展截圖
下載YouTube: No Shorts, No Community, No Nonsense擴展crx文件
下載YouTube: No Shorts, No Community, No Nonsense擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Choose which sections you'd like to block from loading to save your sanity from the gobble-de-gook they attract. Don't let unwanted content take up your time and space.
Source code:
https://github.com/OhThomas/YouTube-No-Shorts-No-Community-No-Nonsense 擴展基本資訊
| 名稱 | |
| ID | ailbpknjjkdokgecbhhdcmgponjnkaon |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-no-shorts-no-comm/ailbpknjjkdokgecbhhdcmgponjnkaon |
| 簡介 | Disables different sections for a more enjoyable experience. |
| 檔案大小 | 35.86 KB |
| 安裝次數 | 39 |
| 目前版本 | 0.6660 |
| 更新時間 | 2023-11-01 |
| 上架時間 | 2023-10-07 |
| 開發者 | Oh Thomas |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/OhThomas/YouTube-No-Shorts-No-Community-No-Nonsense |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube: No Shorts, No Community, No Nonsense",
"description": "Disables different sections for a more enjoyable experience.",
"version": "0.6660",
"author": "Oh Thomas",
"action": {
"default_popup": ".\/dsc.html",
"default_icon": {
"16": ".\/images\/dsc16halloween.png",
"32": ".\/images\/dsc32halloween.png",
"48": ".\/images\/dsc48halloween.png",
"64": ".\/images\/dsc64halloween.png",
"96": ".\/images\/dsc96halloween.png",
"128": ".\/images\/dsc128halloween.png"
}
},
"icons": {
"16": ".\/images\/dsc16halloween.png",
"32": ".\/images\/dsc32halloween.png",
"64": ".\/images\/dsc64halloween.png",
"96": ".\/images\/dsc96halloween.png",
"128": ".\/images\/dsc128halloween.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"run_at": "document_start",
"js": [
".\/dsc.js"
],
"css": [
".\/dsc.css"
]
}
]
} | |