Auto Iframes Remover

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

什麼是Auto Iframes Remover?

Auto Iframes Remover是由https://wildwestwiki.com開發的Chrome擴展程式,該擴展的主要功能是“This extension will automatically remove all iframes on all websites when the page loads.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Auto Iframes Remover擴展crx文件

下載Auto Iframes Remover擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Auto Iframes Remover Auto Iframes Remover
ID fhenkighldilmobhdgopkhejbaainnfm
官方網址 https://chromewebstore.google.com/detail/auto-iframes-remover/fhenkighldilmobhdgopkhejbaainnfm
簡介 This extension will automatically remove all iframes on all websites when the page loads.
檔案大小 18.3 KB
安裝次數 369
目前版本 3.6.9
更新時間 2023-08-28
上架時間 2021-03-04
評分 4.25/5 共 4 次評分
開發者 https://wildwestwiki.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://wildwestwiki.com/childsPlayExtensions/auto-iframes-remover
支援的語言 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"
    }
}