Squarespace Visitor AutoCaptcha

Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.

Cos'è Squarespace Visitor AutoCaptcha?

Squarespace Visitor AutoCaptcha è un'estensione di Chrome sviluppata da hansmartin.hagen, e la sua funzione principale è "Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Squarespace Visitor AutoCaptcha

Scarica i file di estensione Squarespace Visitor AutoCaptcha in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        When enabled, this Chrome extension fetches the provided captcha and enters it for you on all squarespace.com Trail-pages.                    

Informazioni di Base sull'Estensione

Nome Squarespace Visitor AutoCaptcha Squarespace Visitor AutoCaptcha
ID ekjggchmmckalhffbcolpgpphahcionm
URL Ufficiale https://chrome.google.com/webstore/detail/squarespace-visitor-autoc/ekjggchmmckalhffbcolpgpphahcionm
Descrizione Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.
Dimensione del File 12.13 KB
Conteggio Installazioni 169
Versione Corrente 1.0
Ultimo Aggiornamento 2017-02-22
Data di Pubblicazione 2017-02-22
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore hansmartin.hagen
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Squarespace Visitor AutoCaptcha",
    "description": "Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.",
    "version": "1.0",
    "author": "[email protected]",
    "permissions": [
        "storage",
        "https:\/\/*.squarespace.com\/*",
        "tabs",
        "webNavigation"
    ],
    "browser_action": {
        "default_icon": "sqs_off.png",
        "default_title": "Squarespace Visitor AutoCaptcha"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "inject.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.squarespace.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "icons": {
        "48": "sqs.png",
        "96": "sqs.png"
    },
    "manifest_version": 2
}