Youtube Hider
This is a Chrome extension to hide videos and images on YouTube.
什麼是Youtube Hider?
Youtube Hider是由Miri Ahn開發的Chrome擴展程式,該擴展的主要功能是“This is a Chrome extension to hide videos and images on YouTube.”。
擴展截圖
下載Youtube Hider擴展crx文件
下載Youtube Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo
Update 1.1 (2019/11/25)
- Added a button to enable or disable all checkboxes. 擴展基本資訊
| 名稱 | |
| ID | cnaimccmiafebfliaiefkdfmdffgmjph |
| 官方網址 | https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph |
| 簡介 | This is a Chrome extension to hide videos and images on YouTube. |
| 檔案大小 | 8.85 KB |
| 安裝次數 | 60 |
| 目前版本 | 1.1 |
| 更新時間 | 2019-11-29 |
| 上架時間 | 2019-11-29 |
| 評分 | 4.25/5 共 4 次評分 |
| 開發者 | Miri Ahn |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 說明頁面URL | https://github.com/kameru/youtube-hider/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Hider",
"version": "1.1",
"description": "This is a Chrome extension to hide videos and images on YouTube.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"hidingController.js"
]
}
],
"web_accessible_resources": [
"hide_thumb.css",
"hide_video.css",
"hide_icon.css",
"popup.js",
"hidingController.js"
],
"permissions": [
"activeTab",
"storage",
"declarativeContent"
],
"page_action": {
"default_icon": "images\/hide.png",
"default_popup": "popup.html"
},
"manifest_version": 2
} | |