Auto Iframes Remover

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

Vad är Auto Iframes Remover?

Auto Iframes Remover är en Chrome-tillägg utvecklad av https://wildwestwiki.com, och dess huvudfunktion är "This extension will automatically remove all iframes on all websites when the page loads.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Auto Iframes Remover-förlängningens CRX-fil

Ladda ner Auto Iframes Remover-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Auto Iframes Remover Auto Iframes Remover
ID fhenkighldilmobhdgopkhejbaainnfm
Officiell webbadress https://chromewebstore.google.com/detail/auto-iframes-remover/fhenkighldilmobhdgopkhejbaainnfm
Beskrivning This extension will automatically remove all iframes on all websites when the page loads.
Filstorlek 18.3 KB
Antal Installationer 369
Aktuell Version 3.6.9
Senast Uppdaterad 2023-08-28
Publiceringsdatum 2021-03-04
Betyg 4.25/5 Totalt 4 Betyg
Utvecklare https://wildwestwiki.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://wildwestwiki.com/childsPlayExtensions/auto-iframes-remover
Stödda Språk 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"
    }
}