Block Shorts - No more unwanted Shorts
Remove Shorts from your YouTube desktop experience.
什麼是Block Shorts - No more unwanted Shorts?
Block Shorts - No more unwanted Shorts是由arthur.joppart開發的Chrome擴展程式,該擴展的主要功能是“Remove Shorts from your YouTube desktop experience.”。
擴展截圖
下載Block Shorts - No more unwanted Shorts擴展crx文件
下載Block Shorts - No more unwanted Shorts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension gives you the possibility to hide all unwanted YouTube Shorts by simply flipping a switch on the top of the page. 擴展基本資訊
| 名稱 | |
| ID | adbkiegjafadlmleigmjongmcadeghmo |
| 官方網址 | https://chromewebstore.google.com/detail/block-shorts-no-more-unwa/adbkiegjafadlmleigmjongmcadeghmo |
| 簡介 | Remove Shorts from your YouTube desktop experience. |
| 檔案大小 | 9.61 KB |
| 安裝次數 | 64 |
| 目前版本 | 1.4 |
| 更新時間 | 2023-06-13 |
| 上架時間 | 2022-10-26 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | arthur.joppart |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/BelgianNoise/remove-yt-shorts-chrome-extension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Block Shorts - No more unwanted Shorts",
"version": "1.4",
"manifest_version": 3,
"description": "Remove Shorts from your YouTube desktop experience.",
"permissions": [],
"icons": {
"128": "128.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
],
"css": [
"style.css"
]
}
]
} | |