Disabling Steam external link filter

The extension allows you to open links that STEAM considers doubtful or dangerous.

Disabling Steam external link filter là gì?

Disabling Steam external link filter là một tiện ích mở rộng Chrome được phát triển bởi Water, và tính năng chính của nó là "The extension allows you to open links that STEAM considers doubtful or dangerous.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disabling Steam external link filter

Tải xuống các tệp mở rộng Disabling Steam external link filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This lightweight extension to bypass the steam "notice page" (linkfilter), when you clicking external links

After right-clicking on the icon, you can:
1. Remove the icon
2. See the cookie, but I didn't tell you that, right?

The extension contains:
1. Bypass Steam notice "linkfilter" page
2. Displays cookies in the context menu
3. Russian and English languages support (wut?)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disabling Steam external link filter Disabling Steam external link filter
ID ndhnodoehmaefmoglkkffbofjmfjjobn
URL Chính Thức https://chromewebstore.google.com/detail/disabling-steam-external/ndhnodoehmaefmoglkkffbofjmfjjobn
Mô tả The extension allows you to open links that STEAM considers doubtful or dangerous.
Kích Thước Tệp 22.7 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-07-04
Ngày Phát Hành 2020-07-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Water
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_manifest_name__",
    "short_name": "__MSG_manifest_short_name__",
    "description": "__MSG_manifest_description__",
    "version": "0.0.1",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_manifest_title__",
        "default_icon": "icons\/icon32.png"
    },
    "icons": {
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/linkfilter\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "manifest_version": 2,
    "default_locale": "en"
}