No Bloat Fandom

Remove the intrusive parts of fandom.com wikis

No Bloat Fandom란 무엇입니까?

No Bloat Fandom은(는) aaronldickmandev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove the intrusive parts of fandom.com wikis"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

No Bloat Fandom 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A lightweight extension to remove the unnecessary garbage from fandom.com wikis.

Source code, bug reports, feature requests go to: 

https://github.com/aaronldickman/nobloatfandom                    

확장 프로그램 기본 정보

이름 No Bloat Fandom No Bloat Fandom
ID bfnlgjhmkfahjeheaieophmhefdlmfln
공식 URL https://chromewebstore.google.com/detail/no-bloat-fandom/bfnlgjhmkfahjeheaieophmhefdlmfln
설명 Remove the intrusive parts of fandom.com wikis
파일 크기 12.42 KB
설치 횟수 1,000
현재 버전 1.8.0
최근 업데이트 2024-01-16
출시 날짜 2022-09-06
평점 5.00/5 총 17 개의 평점
개발자 aaronldickmandev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Bloat Fandom",
    "permissions": [
        "storage"
    ],
    "description": "Remove the intrusive parts of fandom.com wikis",
    "version": "1.8.0",
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.fandom.com\/*"
            ],
            "js": [
                "fandom-script.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/*.fandom.com\/*"
            ],
            "css": [
                "fandom-styles.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Customize no bloat fandom behavior",
        "default_popup": "\/options-popover\/options-popover.html"
    },
    "options_ui": {
        "page": "\/options-popover\/options-popover.html",
        "open_in_tab": false
    }
}