Hide That!

This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.

What is Hide That!?

Hide That! is a Chrome extension developed by Dao Seeker, and its main feature is "This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download Hide That! Extension CRX File

Download Hide That! 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

                        The primary feature of this extension allows users to hide any element on the page with a simple right-click menu action.

Advanced features on the Options page also allows the user to automatically close invasive popup windows, as well as automatically hide selected elements when the page is loading. 

Several other customizable settings are also available on the Options page.

NOTE:
- The primary right-click functionality of this extension does not permanently hide the element. Any page refresh will bring back the full page as intended. To automatically hide elements when loading a page please try the ‘Automatic Hiding’ feature on the Options page.
- Once the extension is added to Chrome, any pages you already have open will need to be refreshed for the extension to start working.
- The icon menu for chrome extensions should display to the right of the address bar (a puzzle piece).


-- UPDATE NOTES --

3.6.0 (14th April 2023):
- Migrated to new Chrome extension manifest version 3.

3.5.0 (18th November 2022):
- Added "Show Auto Hidden" button in the icon menu to redisplay automatically hidden elements.
- Added "Rerun Auto Hide" button in the icon menu to rerun automatic hiding.

3.4.0 (8th September 2022):
- Added a user-friend option for the Automatic Hiding feature in the icon menu (“Set Auto Hide”) which will automatically generate the necessary element selectors for all your hidden elements on the current page.
- Set newly added items as green, to indicate they are unsaved.

3.3 (21st March 2021):
- Switched to using Chrome's local storage for storing the settings data (instead of syncing the data to your Google account). This allows for a higher data storage limit.

3.2 (31st December 2020):
- Allow user to disable/enable individual automatically hidden sites or elements.

3.1 (22nd December 2020):
- General improvements and bug fixes
- Added option to show/hide help text on the Options page.

3.0 (29th November 2020):
- Added new ‘Automatic Hiding’ feature on the Options page.
- Split the ‘Advanced Features’ section on the Options page into the ‘Automatic Closing’ section and the new ‘Automatic Hiding’ section.
- Improved help text and advanced feature explanations.
- I apologise if any of your Option settings for this extension were reset upon upgrading to version 3.0.

2.2 (6th September 2020):
- Added new 'Export Settings' section to the Options page. This will allow a user to import/export their settings.

2.1 (9th January 2020):
- Enhanced the 'Advanced Features' option that closes listed popup sites. There is now a dropdown list that displays the address of recent new tabs or popups. This means the user doesn't have to manually capture the initial address of the popup site.

2.0 (December 2019):
- Added new 'Advanced Features' section to the Options page.
- Added 'Advanced Features' option that can immediately close listed popup sites.                    

Extension Basic Information

Name Hide That! Hide That!
ID kjheknompfelomdgfloikfbnjmaiflfe
Official URL https://chromewebstore.google.com/detail/hide-that/kjheknompfelomdgfloikfbnjmaiflfe
Description This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.
File Size 75.72 KB
Installation Count 7,000
Current Version 3.6.2
Last Updated 2023-09-08
Publish Date 2020-01-15
Rating 4.58/5 Total 36 Ratings
Developer Dao Seeker
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide That!",
    "description": "This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.",
    "version": "3.6.2",
    "icons": {
        "16": "HideThatIcon_16x16.png",
        "32": "HideThatIcon_32x32.png",
        "48": "HideThatIcon_48x48.png",
        "128": "HideThatIcon_128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-3.6.1.min.js",
                "content.js",
                "common.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": "HideThatIcon_16x16.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "tabs",
        "storage"
    ]
}