Hide YouTube™ Video
Hide YouTube video
什麼是Hide YouTube™ Video?
Hide YouTube™ Video是由Cettoana開發的Chrome擴展程式,該擴展的主要功能是“Hide YouTube video”。
擴展截圖
下載Hide YouTube™ Video擴展crx文件
下載Hide YouTube™ Video擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
# Feature
- Hide Youtube video, listen to music without showing video
- Hide all recommended video's thumbnails
----------------------------------------
If you have any problems or suggestions, welcome to create an issue in the github repository: https://github.com/cettoana/hide-youtube-video 擴展基本資訊
| 名稱 | |
| ID | lminokaobchppnocfchcjcenlmodehmi |
| 官方網址 | https://chromewebstore.google.com/detail/hide-youtube-video/lminokaobchppnocfchcjcenlmodehmi |
| 簡介 | Hide YouTube video |
| 檔案大小 | 11.63 KB |
| 安裝次數 | 73 |
| 目前版本 | 0.1.1 |
| 更新時間 | 2019-01-03 |
| 上架時間 | 2019-01-03 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | Cettoana |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/cettoana/hide-youtube-video |
| 說明頁面URL | https://github.com/cettoana/hide-youtube-video |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hide YouTube\u2122 Video",
"version": "0.1.1",
"description": "Hide YouTube video",
"background": {
"scripts": [
"dist\/background.js"
],
"persistent": false
},
"permissions": [
"https:\/\/www.youtube.com\/*",
"declarativeContent",
"tabs",
"activeTab",
"storage"
],
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/image_16.png",
"32": "images\/image_32.png",
"48": "images\/image_48.png",
"128": "images\/image_128.png"
}
},
"icons": {
"16": "images\/image_16.png",
"32": "images\/image_32.png",
"48": "images\/image_48.png",
"128": "images\/image_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"dist\/insertCSS.js",
"dist\/removeCSS.js"
],
"css": [
"styles\/default.css"
],
"run_at": "document_start"
}
]
} | |