Cat detector

Spots cats in the page you are browsing

Cat detectorคืออะไร?

Cat detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Juangui Jordán และคุณลักษณะหลักของมันคือ "Spots cats in the page you are browsing"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cat detector

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}