Hide That!

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

Was ist Hide That!?

Hide That! ist eine Chrome-Erweiterung, die von Dao Seeker entwickelt wurde, und ihr Hauptmerkmal ist "This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Hide That!-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hide That!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Hide That! Hide That!
ID kjheknompfelomdgfloikfbnjmaiflfe
Offizielle URL https://chromewebstore.google.com/detail/hide-that/kjheknompfelomdgfloikfbnjmaiflfe
Beschreibung This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.
Dateigröße 75.72 KB
Installationsanzahl 7,000
Aktuelle Version 3.6.2
Letztes Update 2023-09-08
Veröffentlichungsdatum 2020-01-15
Bewertung 4.58/5 Insgesamt 36 Bewertungen
Entwickler Dao Seeker
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}