Squarespace Visitor AutoCaptcha

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

Vad är Squarespace Visitor AutoCaptcha?

Squarespace Visitor AutoCaptcha är en Chrome-tillägg utvecklad av hansmartin.hagen, och dess huvudfunktion är "Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.".

Tilläggsskärmbilder

screenshot

Ladda ner Squarespace Visitor AutoCaptcha-förlängningens CRX-fil

Ladda ner Squarespace Visitor AutoCaptcha-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Squarespace Visitor AutoCaptcha Squarespace Visitor AutoCaptcha
ID ekjggchmmckalhffbcolpgpphahcionm
Officiell webbadress https://chrome.google.com/webstore/detail/squarespace-visitor-autoc/ekjggchmmckalhffbcolpgpphahcionm
Beskrivning Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.
Filstorlek 12.13 KB
Antal Installationer 169
Aktuell Version 1.0
Senast Uppdaterad 2017-02-22
Publiceringsdatum 2017-02-22
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare hansmartin.hagen
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}