Kitten Blocker

This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!

Kitten Blocker란 무엇입니까?

Kitten Blocker은(는) mattogodoy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!"입니다.

확장 프로그램 스크린샷

screenshot

Kitten Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of seeing cat pictures all around the internet?
Fear no more! Here comes the solution.

New in version 0.3:
==============
- Updated web URL

New in version 0.2:
==============
- Switch to enable / disable extension.
- Counter badge for replaced kitties.
- Runs in background. Now you don't have to click the icon to hide the cats.
- Detects changes in the page and blocks any new kitties.
- Keeps the original picture size.                    

확장 프로그램 기본 정보

이름 Kitten Blocker Kitten Blocker
ID bhlfekkbgcbmlnfclgklmbdmodbhbdla
공식 URL https://chromewebstore.google.com/detail/kitten-blocker/bhlfekkbgcbmlnfclgklmbdmodbhbdla
설명 This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!
파일 크기 99.94 KB
설치 횟수 57
현재 버전 0.3
최근 업데이트 2022-09-25
출시 날짜 2014-11-05
평점 5.00/5 총 4 개의 평점
개발자 mattogodoy
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kitten Blocker",
    "short_name": "Kitten Blocker",
    "version": "0.3",
    "homepage_url": "https:\/\/matto.io",
    "description": "This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Kitten Blocker",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "manifest_version": 2
}