Auto Iframes Remover

This extension will automatically remove all iframes on all websites when the page loads.

O que é Auto Iframes Remover?

Auto Iframes Remover é uma extensão do Chrome desenvolvida por https://wildwestwiki.com, e sua principal característica é "This extension will automatically remove all iframes on all websites when the page loads.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Auto Iframes Remover

Baixe arquivos de extensão Auto Iframes Remover no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Want to remove all iframes on a website? Auto Iframes Remover automatically finds and removes or stops all iframes from loading on websites. When active, the extension automatically starts removing iframes the moment you start loading a website and continues to remove all iframes including those that may spring up later after the site loads.                    

Informações Básicas da Extensão

Nome Auto Iframes Remover Auto Iframes Remover
ID fhenkighldilmobhdgopkhejbaainnfm
URL Oficial https://chromewebstore.google.com/detail/auto-iframes-remover/fhenkighldilmobhdgopkhejbaainnfm
Descrição This extension will automatically remove all iframes on all websites when the page loads.
Tamanho do Arquivo 18.3 KB
Contagem de Instalações 369
Versão Atual 3.6.9
Última Atualização 2023-08-28
Data de Publicação 2021-03-04
Classificação 4.25/5 Total de 4 Avaliações
Desenvolvedor https://wildwestwiki.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://wildwestwiki.com/childsPlayExtensions/auto-iframes-remover
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.6.9",
    "manifest_version": 3,
    "offline_enabled": true,
    "short_name": "AiR",
    "homepage_url": "https:\/\/wildwestwiki.com\/wiki\/1090025\/auto-iframes-remover-air-chrome-extension",
    "name": "Auto Iframes Remover",
    "description": "This extension will automatically remove all iframes on all websites when the page loads.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "badge": {
            "display": "block",
            "text": "0"
        },
        "default_popup": "options.html",
        "default_title": "Auto Iframes Remover V3 series"
    },
    "options_page": "options.html",
    "icons": {
        "48": "airsmall.png",
        "128": "air.png"
    }
}