Cat detector

Spots cats in the page you are browsing

Cat detector란 무엇입니까?

Cat detector은(는) Juangui Jordán에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Spots cats in the page you are browsing"입니다.

확장 프로그램 스크린샷

screenshot

Cat detector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Cats are everywhere on the internet.Whether you are a cat lover or completely frightened by cats, this extension can help you, by early detecting cats in the web page that you are browsing.

This extension counts the number of cat words displayed in the current page. On detection, a counter is displayed over the extension icon, and meow sounds are played. If the "Auto-detect" option is checked, each time you browse a web page, the cats are detected. If not, just click on the extension icon and select the "Detect cats" option.                    

확장 프로그램 기본 정보

이름 Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
공식 URL https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
설명 Spots cats in the page you are browsing
파일 크기 183 KB
설치 횟수 20
현재 버전 1.0
최근 업데이트 2020-06-03
출시 날짜 2020-06-02
평점 1.00/5 총 1 개의 평점
개발자 Juangui Jordán
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cat detector",
    "description": "Spots cats in the page you are browsing",
    "manifest_version": 2,
    "version": "1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/footprint-16.png",
        "32": "images\/footprint-32.png",
        "48": "images\/footprint-48.png",
        "128": "images\/footprint-128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ]
}