Squarespace Visitor AutoCaptcha

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

Squarespace Visitor AutoCaptchaคืออะไร?

Squarespace Visitor AutoCaptcha เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hansmartin.hagen และคุณลักษณะหลักของมันคือ "Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Squarespace Visitor AutoCaptcha

ดาวน์โหลดไฟล์ส่วนขยาย Squarespace Visitor AutoCaptcha ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Squarespace Visitor AutoCaptcha Squarespace Visitor AutoCaptcha
ID ekjggchmmckalhffbcolpgpphahcionm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/squarespace-visitor-autoc/ekjggchmmckalhffbcolpgpphahcionm
คำอธิบาย Fetches and fills in the captcha for you on all Trail pages @ squarespace.com ( VISITOR ACCESS ) while enabled.
ขนาดไฟล์ 12.13 KB
จำนวนการติดตั้ง 169
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-02-22
วันที่เผยแพร่ 2017-02-22
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา hansmartin.hagen
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
}