HideMyVideo
Embeds videos into any webpage
什么是HideMyVideo?
HideMyVideo是由anarchy2810开发的Chrome扩展程序,该扩展的主要功能是“Embeds videos into any webpage”。
扩展截图
下载HideMyVideo扩展crx文件
下载HideMyVideo扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
HideMyVideo replaces webpage videos/images with any YouTube Video, or Video that you desire! 扩展基本信息
| 名称 | |
| ID | gllhpfhkdpjlcfflpclfemkbipnnimik |
| 官方URL | https://chromewebstore.google.com/detail/hidemyvideo/gllhpfhkdpjlcfflpclfemkbipnnimik |
| 简介 | Embeds videos into any webpage |
| 文件大小 | 108 KB |
| 安装次数 | 11 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-06-19 |
| 上架时间 | 2018-06-19 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | anarchy2810 |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "HideMyVideo",
"description": "Embeds videos into any webpage",
"version": "1.0",
"browser_action": {
"default_icon": {
"128": "images\/icon128.png",
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"256": "images\/icon256.png",
"32": "images\/icon32.png",
"64": "images\/icon64.png"
},
"default_popup": "popup.html",
"default_title": "Click here!"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "images\/icon16.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content_scripts\/content.js",
"content_scripts\/jquery.min.js"
],
"css": [
"content_scripts\/format.css"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"tabs"
]
} | |