Squarespace Visitor AutoCaptcha

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

Was ist Squarespace Visitor AutoCaptcha?

Squarespace Visitor AutoCaptcha ist eine Chrome-Erweiterung, die von hansmartin.hagen entwickelt wurde, und ihr Hauptmerkmal ist "Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.".

Erweiterungsscreenshots

screenshot

Squarespace Visitor AutoCaptcha-Erweiterungs-CRX-Datei herunterladen

Laden Sie Squarespace Visitor AutoCaptcha-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Squarespace Visitor AutoCaptcha Squarespace Visitor AutoCaptcha
ID ekjggchmmckalhffbcolpgpphahcionm
Offizielle URL https://chrome.google.com/webstore/detail/squarespace-visitor-autoc/ekjggchmmckalhffbcolpgpphahcionm
Beschreibung Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.
Dateigröße 12.13 KB
Installationsanzahl 169
Aktuelle Version 1.0
Letztes Update 2017-02-22
Veröffentlichungsdatum 2017-02-22
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler hansmartin.hagen
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}