Hide That!

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

¿Qué es Hide That!?

Hide That! es una extensión de Chrome desarrollada por Dao Seeker, y su función principal es "This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Hide That!

Descarga archivos de extensión Hide That! en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Hide That! Hide That!
ID kjheknompfelomdgfloikfbnjmaiflfe
URL Oficial https://chromewebstore.google.com/detail/hide-that/kjheknompfelomdgfloikfbnjmaiflfe
Descripción This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.
Tamaño del Archivo 75.72 KB
Cantidad de Instalaciones 7,000
Versión Actual 3.6.2
Última Actualización 2023-09-08
Fecha de Publicación 2020-01-15
Calificación 4.58/5 Total de 36 Calificaciones
Desarrollador Dao Seeker
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}