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
扩展基本信息
名称 | Hide YouTube™ Video |
ID | lminokaobchppnocfchcjcenlmodehmi |
官方URL | 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" } ] } |