Steam Web Filter Bypasser

Provides automatic functionality to Steam's web filter pages

Steam Web Filter Bypasserคืออะไร?

Steam Web Filter Bypasser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Master และคุณลักษณะหลักของมันคือ "Provides automatic functionality to Steam's web filter pages"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Web Filter Bypasser

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

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

                        Steam Web Filter Bypasser is an Extension for Google Chrome that provides automatic bypass functionality to Steam's web filter pages, and some other useful features.

Unlike other extensions in this category, this is the only one that intelligently bypasses all of Steam's filter pages, yet retains user protection by only filtering common phishing sites that try to steal your identity. It's the best of both worlds, and your ultimate install-and-forget solution.

Features include:
* Forwards you to links from steam chat automatically
* Auto-continues age-gated pages (see screenshot) from steamcommunity.com
* Auto-accepts SSA/TOS checkbox on market pages during purchase
* Supports links from Steam chat (web or application), Steam forums, and official Steam/Steam community websites.
* Intelligently corrects misspellings of steamcommunity.com to prevent common phishing urls being clicked by accident.
* Accurate and efficient Steam web filter detection ensures this extension accounts for url variations, and ensures you always get you bypassed, unlike other extensions that only work most of the time. That simply isn't good enough.

This extension does not obtain any information from steamcommunity.com in any way. For those concerned, I invite them to view the source.

----------------------------------------------------------------

v1.5.2
- Added auto-accept for the market SSA/TOS when you're attempting to purchase something from the store page. (The confirmation checkbox regarding terms)

v1.5.1
- Fixed accidental permission change

v.1.5
- Improved the phishing detection and corresponding notification that presents itself when trying go to common phishing sites. Now uses an enhanced version of Steam's native phishing alert page.
- Minor tweaks

v.1.4.2/1.4.3
- Tweaks, code cleanup, better icon. It's now more efficient and overall smaller.

v.1.4/1.4.1
- Steamcommunity.com mispelling check now utilizes the Levenshtein distance. This prevents similar urls from being detected accidentally, and ensures only suspect urls are alerted.
- Description update
 
v.1.3.2/1.3.3
- Added auto-continue for age gates on http://steamcommunity.com/sharedfiles/ pages

v.1.3.1
- Corrected a bug with url's that had special characters and needed to be decoded first before redirecting, and improved warning for suspect urls

v.1.3
- Now checks common misspellings of steamcommunity.com and corrects them automatically. See description update above.

v.1.1/1.2
- Faster, smaller, and supports links from the Steam forums in addition to normal steam chat

v.1.0
-Initial release                    

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

ชื่อ Steam Web Filter Bypasser Steam Web Filter Bypasser
ID gohcmgakipmdlpacegcgolafdhdlgifl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/steam-web-filter-bypasser/gohcmgakipmdlpacegcgolafdhdlgifl
คำอธิบาย Provides automatic functionality to Steam's web filter pages
ขนาดไฟล์ 9.77 KB
จำนวนการติดตั้ง 568
เวอร์ชันปัจจุบัน 1.5.2
อัปเดตครั้งล่าสุด 2014-10-13
วันที่เผยแพร่ 2014-10-13
คะแนน 3.67/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Master
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "The Master",
    "name": "Steam Web Filter Bypasser",
    "description": "Provides automatic functionality to Steam's web filter pages",
    "manifest_version": 2,
    "version": "1.5.2",
    "icons": {
        "128": "thumbnail-128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/steamcommunity.com\/*"
    ],
    "background": {
        "scripts": [
            "background-min.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/linkfilter\/*"
            ],
            "js": [
                "linkfilter-min.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/sharedfiles\/*",
                "*:\/\/steamcommunity.com\/app\/*"
            ],
            "js": [
                "agegate-min.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/market\/*"
            ],
            "js": [
                "marketssa-min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "background-min.js",
        "linkfilter-min.js",
        "agegate-min.js",
        "thumbnail-128.png"
    ]
}