BrowQue

This extensions defends against various privacy attacks which happens while you browse on the internet.

BrowQue là gì?

BrowQue là một tiện ích mở rộng Chrome được phát triển bởi hrj, và tính năng chính của nó là "This extensions defends against various privacy attacks which happens while you browse on the internet.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BrowQue

Tải xuống các tệp mở rộng BrowQue 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

                        Browser Extension to tackle fingerprinting attacks affecting the privacy of users. We are trying to introduce a tor model to chrome browser with this extension.

Please note that this is still under development. 

Features:

1. Protection against Canvas Fingerprinting
2. Protection against Webrtc leak
3. Protection against Battery API
4. Randomising navigator properties and User-Agent header
5. Spoofing screen resolution
6. Removing adscripts and third party tracking scripts
7. Clearing cookies, cache, history, form details, web storage like session storage, local storage etc on startup
8. Securing from spectre attack
9. Disabling Flash and geolocation API in high privacy

Use:

To use this extension, enable developer mode in Chrome or Chromium and click on Load Unpacked extension, choose the cloned folder.

⚠️ WARNING ⚠️
Run tor via command line for better experience.

Install tor in Linux via sudo apt-get install tor and in Mac, brew install tor.                    

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

Tên BrowQue BrowQue
ID impfiipgjdohaffagkegegghldihfann
URL Chính Thức https://chrome.google.com/webstore/detail/browque/impfiipgjdohaffagkegegghldihfann
Mô tả This extensions defends against various privacy attacks which happens while you browse on the internet.
Kích Thước Tệp 339 KB
Số Lần Cài Đặt 214
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-02-23
Ngày Phát Hành 2018-02-23
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển hrj
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Webprivacy/Privacy-Extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BrowQue",
    "description": "This extensions defends against various privacy attacks which happens while you browse on the internet.",
    "version": "1.1",
    "icons": {
        "64": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "tor.js"
        ]
    },
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "options.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "privacy",
        "tabs",
        "browsingData",
        "contentSettings",
        "",
        "webRequest",
        "webRequestBlocking",
        "notifications",
        "proxy"
    ],
    "web_accessible_resources": [
        "hosts",
        "script.js",
        "canvasing.js",
        "battery.js",
        "time.js",
        "storage",
        "popup.html"
    ]
}