Squarespace Visitor AutoCaptcha

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

Qu'est-ce que Squarespace Visitor AutoCaptcha ?

Squarespace Visitor AutoCaptcha est une extension Chrome développée par hansmartin.hagen, et sa fonction principale est "Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Squarespace Visitor AutoCaptcha

Téléchargez les fichiers d'extension Squarespace Visitor AutoCaptcha au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Squarespace Visitor AutoCaptcha Squarespace Visitor AutoCaptcha
ID ekjggchmmckalhffbcolpgpphahcionm
URL Officiel https://chrome.google.com/webstore/detail/squarespace-visitor-autoc/ekjggchmmckalhffbcolpgpphahcionm
Description Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.
Taille du Fichier 12.13 KB
Nombre d'Installations 169
Version Actuelle 1.0
Dernière Mise à Jour 2017-02-22
Date de Publication 2017-02-22
Évaluation 3.00/5 Total 4 Évaluations
Développeur hansmartin.hagen
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}