Crows

Crossword Solver

What is Crows?

Crows is a Chrome extension developed by Herman Chau, and its main feature is "Crossword Solver".

Extension Screenshots

screenshot

Download Crows Extension CRX File

Download Crows extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Crows Crows
ID focjdbigcejnpnaoellgchjajlhafefh
Official URL https://chromewebstore.google.com/detail/crows/focjdbigcejnpnaoellgchjajlhafefh
Description Crossword Solver
File Size 57.61 KB
Installation Count 42
Current Version 1.2
Last Updated 2019-08-11
Publish Date 2019-08-05
Developer Herman Chau
Payment Type free
Supported Languages 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"
    }
}