Hide it now!
Hide unwanted element on any websites!
什么是Hide it now!?
Hide it now!是由supertomlai开发的Chrome扩展程序,该扩展的主要功能是“Hide unwanted element on any websites!”。
扩展截图
下载Hide it now!扩展crx文件
下载Hide it now!扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Hide unwanted ADs or view blocking stuff on the webpage on a mouse click!
This Extension will add a right click menu item which let you instantly hide the selected AD/item on the displayed webpage!
User may be required to reload webpages to use this extension after installation. 扩展基本信息
| 名称 | |
| ID | ielggdbamjmfoiennlibhkknhopncipl |
| 官方URL | https://chromewebstore.google.com/detail/hide-it-now/ielggdbamjmfoiennlibhkknhopncipl |
| 简介 | Hide unwanted element on any websites! |
| 文件大小 | 28.92 KB |
| 安装次数 | 168 |
| 当前版本 | 1.0 |
| 更新时间 | 2015-03-19 |
| 上架时间 | 2015-03-18 |
| 评分 | 3.63/5 共8次评分 |
| 开发者 | supertomlai |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hide it now!",
"description": "Hide unwanted element on any websites!",
"omnibox": {
"keyword": "hide"
},
"icons": {
"16": "icon.png"
},
"background": {
"scripts": [
"background.js"
]
},
"version": "1.0",
"minimum_chrome_version": "9",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"mouseclick.js"
],
"css": [
"hide_element.css"
]
}
],
"permissions": [
"activeTab",
"contextMenus"
]
} | |