Privacy Tweaks

Improve your online privacy with few tweaks via toolbar popup!

Vad är Privacy Tweaks?

Privacy Tweaks är en Chrome-tillägg utvecklad av loora, och dess huvudfunktion är "Improve your online privacy with few tweaks via toolbar popup!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Privacy Tweaks-förlängningens CRX-fil

Ladda ner Privacy Tweaks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Privacy Tweaks is an extension that helps you improve your privacy while browsing by using ten different techniques.

Simply open toolbar popup UI and mark a desired tweak. Please note that, only few tweaks are selected by default. Also, please keep in mind that, depending on your browser version and platform, this add-on might behave differently. There are few settings (related to timezone, geolocation and proxy) available in toolbar popup to adjust.

Currently there are 10 tweaks available for this add-on:
1. Block most common ads.
2. Block canvas fingerprint.
3. Block font fingerprint.
4. Block webgl fingerprint.
5. Block audiocontext fingerprint.
6. Block webrtc IP leakage.
7. Change browser timezone.
8. Change browser geolocation.
9. Set custom socks5 proxy.
10. Block most common trackers.

Note 1: I have made this extension with Yubi's collaboration. This add-on is inspired by Speed Tweaks made by Yubi: https://chrome.google.com/webstore/detail/speed-tweaks/afebilemcaepdkmhmibgmnpfppnjimjf

Note 2: to report bugs, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/privacy-tweaks.html).                    

Grundläggande Information om Tillägg

Namn Privacy Tweaks Privacy Tweaks
ID indpljpndioefdhmhafebdcddigbogbn
Officiell webbadress https://chromewebstore.google.com/detail/privacy-tweaks/indpljpndioefdhmhafebdcddigbogbn
Beskrivning Improve your online privacy with few tweaks via toolbar popup!
Filstorlek 2.75 MB
Antal Installationer 5,456
Aktuell Version 0.1.6
Senast Uppdaterad 2024-02-19
Publiceringsdatum 2018-10-17
Betyg 3.73/5 Totalt 11 Betyg
Utvecklare loora
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://mybrowseraddon.com/privacy-tweaks.html
Hjälpsida URL https://mybrowseraddon.com/privacy-tweaks.html
URL till Sekretesspolicy Sidan https://mybrowseraddon.com/privacy-policy/privacy-tweaks.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.6",
    "manifest_version": 3,
    "name": "Privacy Tweaks",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/privacy-tweaks.html",
    "description": "Improve your online privacy with few tweaks via toolbar popup!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "proxy",
        "storage",
        "privacy",
        "notifications",
        "declarativeNetRequest"
    ],
    "action": {
        "default_title": "Privacy Tweaks",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/tweaks\/font.js",
                "data\/content_script\/tweaks\/webgl.js",
                "data\/content_script\/tweaks\/webrtc.js",
                "data\/content_script\/tweaks\/canvas.js",
                "data\/content_script\/tweaks\/timezone.js",
                "data\/content_script\/tweaks\/geolocation.js",
                "data\/content_script\/tweaks\/audiocontext.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}