Crows

Crossword Solver

Wat is Crows?

Crows is een Chrome-extensie ontwikkeld door Herman Chau, en de belangrijkste functie is "Crossword Solver".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Crows

Download Crows-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Crows Crows
ID focjdbigcejnpnaoellgchjajlhafefh
Officiële URL https://chromewebstore.google.com/detail/crows/focjdbigcejnpnaoellgchjajlhafefh
Beschrijving Crossword Solver
Bestandsgrootte 57.61 KB
Aantal Installaties 42
Huidige Versie 1.2
Laatst Bijgewerkt 2019-08-11
Publicatiedatum 2019-08-05
Ontwikkelaar Herman Chau
Betalingswijze free
Ondersteunde Talen 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"
    }
}