AD12 Unblocker

Quickly get to the HTTPS version of blocked pages on Adams12 computers. Warning: crude and quick implementation.

AD12 Unblockerคืออะไร?

AD12 Unblocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brandon-dev และคุณลักษณะหลักของมันคือ "Quickly get to the HTTPS version of blocked pages on Adams12 computers. Warning: crude and quick implementation."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AD12 Unblocker

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

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

                        When installed, this extension adds a link to the blocked website page that takes you to the HTTPS version of the blocked site or page. The link is next to the blocked URL right in the middle.

REMEMBER: When visiting a page using HTTPS, look in the right side of the URL bar for a shield icon. If it is there, click it and choose "Load anyway". This is a side effect of using HTTPS on page that don't normally use it.

Changelog:
 * v0.71
   - Fixed small bug where user is notified a page is being blocked when it actually isn't
 * v0.70
   - Matching multi-line URLs actually works now
 * v0.61
   - Small but crucial fix to URL matching again
 * v0.60
   - Fixed URL matching against nested URLs
   - Will only add HTTPS link to the first URL

Whats to come:
 * Better detection of when a page is blocked
 * An options page to adjust/toggle certain behaviors                    

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

ชื่อ AD12 Unblocker AD12 Unblocker
ID ppblpdceppnkkchilgkngkediafkgchd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/ad12-unblocker/ppblpdceppnkkchilgkngkediafkgchd
คำอธิบาย Quickly get to the HTTPS version of blocked pages on Adams12 computers. Warning: crude and quick implementation.
ขนาดไฟล์ 82.47 KB
จำนวนการติดตั้ง 20
เวอร์ชันปัจจุบัน 0.71
อัปเดตครั้งล่าสุด 2012-12-17
วันที่เผยแพร่ 2012-12-17
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา brandon-dev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AD12 Unblocker",
    "version": "0.71",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/192.168.*.*\/cgi\/block.cgi*"
            ],
            "js": [
                "jquery-1.8.3.min.js",
                "content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "description": "Quickly get to the HTTPS version of blocked pages on Adams12 computers. Warning: crude and quick implementation. ",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon16.png",
        "default_title": "This page is being blocked."
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ]
}