Hide it now!
Hide unwanted element on any websites!
What is Hide it now!?
Hide it now! is a Chrome extension developed by supertomlai, and its main feature is "Hide unwanted element on any websites!".
Extension Screenshots
Download Hide it now! Extension CRX File
Download Hide it now! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Hide it now! |
ID | ielggdbamjmfoiennlibhkknhopncipl |
Official URL | https://chromewebstore.google.com/detail/hide-it-now/ielggdbamjmfoiennlibhkknhopncipl |
Description | Hide unwanted element on any websites! |
File Size | 28.92 KB |
Installation Count | 168 |
Current Version | 1.0 |
Last Updated | 2015-03-19 |
Publish Date | 2015-03-18 |
Rating | 3.63/5 Total 8 Ratings |
Developer | supertomlai |
Payment Type | free |
Supported Languages | 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" ] } |