Crows

Crossword Solver

ما هو Crows؟

Crows هو إضافة Chrome تم تطويرها بواسطة Herman Chau، والميزة الرئيسية لها هي "Crossword Solver".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Crows

قم بتنزيل ملفات الامتداد Crows بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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