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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}