Crows

Crossword Solver

Crowsคืออะไร?

Crows เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Herman Chau และคุณลักษณะหลักของมันคือ "Crossword Solver"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Crows ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        An extension to look up answers to crossword clues, aggregating across multiple sources.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Crows Crows
ID focjdbigcejnpnaoellgchjajlhafefh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/crows/focjdbigcejnpnaoellgchjajlhafefh
คำอธิบาย Crossword Solver
ขนาดไฟล์ 57.61 KB
จำนวนการติดตั้ง 42
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2019-08-11
วันที่เผยแพร่ 2019-08-05
ผู้พัฒนา Herman Chau
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crows",
    "version": "1.2",
    "description": "Crossword Solver",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.wordplays.com\/",
        "http:\/\/www.the-crossword-solver.com\/"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+C",
                "mac": "Alt+C",
                "linux": "Alt+C"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Solve crossword clues.",
        "default_popup": "popup.html"
    }
}