ABB-remover

This extension removes all traces off ABB on the webpages vg.no, Dagbladet.no, NRK.no and Aftenposten.no

ABB-remover란 무엇입니까?

ABB-remover은(는) Peer Andreas Stange에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension removes all traces off ABB on the webpages vg.no, Dagbladet.no, NRK.no and Aftenposten.no"입니다.

확장 프로그램 스크린샷

screenshot

ABB-remover 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension removes all images and most articles about from the frontpage of VG.no, Dagbladet.no, NRK.no and Aftenposten.no and replaces them with images of kittens.

v0.2
Support for randomized gifs

v.0.3
Added api-key to thecatapi calls

v.0.4
Added support for NRK.no

v.0.4.1
Better style support for wide gifs

v 0.4.2
Support for the pages with URL argument

v 0.5
- Now changes images on DOMContentLoaded
- Added support for edgecases in NRK where the name is not mentioned
v 0.5.1
- Bugfix for dagbladet.no impossible to read articles

v 0.5.2
- Bugfix for Aftenposten where some articles escaped and the news ticker was covered if ABB was mentioned

v 0.5.3
- Some redundancy fixes in the code to keep it from crashing in special cases


Requests and feedback are greatly appreciated.                    

확장 프로그램 기본 정보

이름 ABB-remover ABB-remover
ID hlfkepjnpmlabdemjhoodhlmcgglipmb
공식 URL https://chromewebstore.google.com/detail/abb-remover/hlfkepjnpmlabdemjhoodhlmcgglipmb
설명 This extension removes all traces off ABB on the webpages vg.no, Dagbladet.no, NRK.no and Aftenposten.no
파일 크기 5.32 KB
설치 횟수 63
현재 버전 0.5.3
최근 업데이트 2016-03-18
출시 날짜 2016-03-18
평점 4.50/5 총 4 개의 평점
개발자 Peer Andreas Stange
결제 유형 free
지원되는 언어 no
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.5.3",
    "name": "ABB-remover",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "description": "This extension removes all traces off ABB on the webpages vg.no, Dagbladet.no, NRK.no and Aftenposten.no",
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.vg.no\/",
                "http:\/\/www.dagbladet.no\/",
                "http:\/\/www.dagbladet.no\/?ref=inger",
                "http:\/\/www.aftenposten.no\/",
                "http:\/\/www.nrk.no\/"
            ],
            "js": [
                "abbremover.js"
            ],
            "run_at": "document_start"
        }
    ]
}