Click-to-hide
Hide elements on page by clicking on them.
Co je Click-to-hide?
Click-to-hide je rozšíření Chrome vyvinuté http://mattconn.io, a jeho hlavní funkcí je „Hide elements on page by clicking on them.“.
Stáhnout soubor CRX rozšíření Click-to-hide
Stáhněte si soubory rozšíření Click-to-hide ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
# Click-to-hide Chrome extension to delete element on page by clicking on it. Useful for ads and other page blocking elements. ## To Use: Click on the Click-to-hide icon to enable the extension. You will know that the extension is enabled when you see your cursor appear as a crosshair. The script will then be enabled for one click at a time. Cick on any element on the page to effectively remove or hide it. To remove another element on the page, click on the extension icon again to re-enable, and repeat this process for any remaining elements on the page that you wish to remove.
Základní Informace o Rozšíření
Název | |
ID | lcdicpnpgjfaodmccefekkfecadllbjg |
Oficiální URL | https://chrome.google.com/webstore/detail/click-to-hide/lcdicpnpgjfaodmccefekkfecadllbjg |
Popis | Hide elements on page by clicking on them. |
Velikost souboru | 5.16 KB |
Počet instalací | 127 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2018-02-13 |
Datum Vydání | 2018-02-13 |
Hodnocení | 3.00/5 Celkem 2 Hodnocení |
Vývojář | http://mattconn.io |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/mattConn/chrome-click-to-hide |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Click-to-hide", "description": "Hide elements on page by clicking on them.", "version": "1.0.1", "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "css": [ "style.css" ] } ], "browser_action": { "default_title": "Click-to-hide" }, "icons": { "128": "icon128.png" }, "manifest_version": 2 } |