Cat detector

Spots cats in the page you are browsing

Cat detector là gì?

Cat detector là một tiện ích mở rộng Chrome được phát triển bởi Juangui Jordán, và tính năng chính của nó là "Spots cats in the page you are browsing".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cat detector

Tải xuống các tệp mở rộng Cat detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cat detector Cat detector
ID iiaobbmnomlhhcblbgkdchcfoblbghgi
URL Chính Thức https://chromewebstore.google.com/detail/cat-detector/iiaobbmnomlhhcblbgkdchcfoblbghgi
Mô tả Spots cats in the page you are browsing
Kích Thước Tệp 183 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-06-03
Ngày Phát Hành 2020-06-02
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Juangui Jordán
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}