FA Ad Banner Nuker

Removes the third-party banner ads on Furaffinity

FA Ad Banner Nuker란 무엇입니까?

FA Ad Banner Nuker은(는) Todd Slater에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes the third-party banner ads on Furaffinity"입니다.

확장 프로그램 스크린샷

screenshot

FA Ad Banner Nuker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A tiny Chrome extension that simply removes the (annoying) banner ad on the top of www.furaffinity.net, without affecting any of the internal ads at the bottom of the page. 

Also includes options to remove the in-house ads at the top and bottom of the page if desired (in addition to the third-party banner ad, which is always removed).

Works in both the new and traditional site layouts! :3

======= UPDATES =======
v1.0.13
- Added the ability to optionally remove the in-house ads at the bottom of the page.
- Added the ability to optionally remove the in-house ads at the top right of the page in the legacy layout.
- Added an options page to allow configuration and saving of the options above.                    

확장 프로그램 기본 정보

이름 FA Ad Banner Nuker FA Ad Banner Nuker
ID bnkpjmdnjimfchafejmjbpnhjlojlpph
공식 URL https://chromewebstore.google.com/detail/fa-ad-banner-nuker/bnkpjmdnjimfchafejmjbpnhjlojlpph
설명 Removes the third-party banner ads on Furaffinity
파일 크기 20.6 KB
설치 횟수 49
현재 버전 1.0.13
최근 업데이트 2023-03-19
출시 날짜 2016-01-09
평점 5.00/5 총 1 개의 평점
개발자 Todd Slater
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FA Ad Banner Nuker",
    "version": "1.0.13",
    "manifest_version": 3,
    "description": "Removes the third-party banner ads on Furaffinity",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "src\/html\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "src\/html\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.furaffinity.net\/*",
                "https:\/\/*.furaffinity.net\/*"
            ],
            "js": [
                "src\/js\/main.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}