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ファイルをダウンロード

Cat detector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}