Privacy Redirect

Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.

什麼是Privacy Redirect?

Privacy Redirect是由Simon Brazell開發的Chrome擴展程式,該擴展的主要功能是“Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Privacy Redirect擴展crx文件

下載Privacy Redirect擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ★ More Info: ℹ️ 
• Nitter - https://github.com/zedeus/nitter
• Invidious - https://github.com/omarroth/invidious
• Bibliogram - https://github.com/cloudrac3r/bibliogram
• OpenStreetMap - https://wiki.openstreetmap.org

Allows for setting custom instances, toggling all redirects on/off and more.

The code for this web extension is available on Github - https://github.com/SimonBrazell/privacy-redirect.

★ Donate: 👨🏻‍💻
If you like this extension and are financially able please consider buying me a coffee to show your appreciation and support the continuation of the project.

☕️ https://www.buymeacoffee.com/SimonBrazell ☕️ 
🍻 https://liberapay.com/SimonBrazell/donate 🍻

★ What's New in This Version (v1.1.49): 🆕
• Add Wikiless support.
• Italian translation fix.
• Redirect Norwegian Google Translate.
• Instance changes.
• See commit history for full list of changes - https://github.com/SimonBrazell/privacy-redirect/compare/v1.1.48...v1.1.49.
• A big thank you to everyone who submitted PRs!

★ Permissions: ℹ️
• Please note, access to all website navigation events (all URLs), not just the target domains, is required to allow embedded video redirects to occur. At this time I know of no other way to achieve iframe redirects, happy to hear some suggestions on this though 🙂                    

擴展基本資訊

名稱 Privacy Redirect Privacy Redirect
ID pmcmeagblkinmogikoikkdjiligflglb
官方網址 https://chromewebstore.google.com/detail/privacy-redirect/pmcmeagblkinmogikoikkdjiligflglb
簡介 Redirects Twitter, YouTube, Instagram and more to privacy friendly alternatives.
檔案大小 58.27 KB
安裝次數 10,358
目前版本 1.1.49
更新時間 2021-07-25
上架時間 2020-06-07
評分 4.03/5 共 36 次評分
開發者 Simon Brazell
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/SimonBrazell/privacy-redirect
說明頁面URL https://github.com/SimonBrazell/privacy-redirect/issues
支援的語言 de,en,fr,tr,es,it,pl,ru,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.1.49",
    "manifest_version": 2,
    "background": {
        "page": "pages\/background\/background.html",
        "persistent": true
    },
    "default_locale": "en",
    "icons": {
        "16": "assets\/images\/icon16.png",
        "32": "assets\/images\/icon32.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_title": "Privacy Redirect",
        "default_popup": "pages\/popup\/popup.html",
        "default_icon": {
            "16": "assets\/images\/icon16.png",
            "32": "assets\/images\/icon32.png",
            "48": "assets\/images\/icon48.png",
            "128": "assets\/images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/www.twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*",
                "*:\/\/pbs.twimg.com\/*",
                "*:\/\/video.twimg.com\/*"
            ],
            "js": [
                "assets\/javascripts\/remove-twitter-sw.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/invidious.snopyta.org\/*",
                "*:\/\/invidious.xyz\/*",
                "*:\/\/invidious.kavin.rocks\/*",
                "*:\/\/tube.connect.cafe\/*",
                "*:\/\/invidious.zapashcanon.fr\/*",
                "*:\/\/invidiou.site\/*",
                "*:\/\/vid.mint.lgbt\/*",
                "*:\/\/invidious.site\/*",
                "*:\/\/yewtu.be\/*",
                "*:\/\/invidious.tube\/*",
                "*:\/\/invidious.silkky.cloud\/*",
                "*:\/\/invidious.himiko.cloud\/*",
                "*:\/\/inv.skyn3t.in\/*",
                "*:\/\/tube.incognet.io\/*",
                "*:\/\/invidious.tinfoil-hat.net\/*",
                "*:\/\/invidious.namazso.eu\/*",
                "*:\/\/vid.puffyan.us\/*",
                "*:\/\/dev.viewtube.io\/*",
                "*:\/\/invidious.048596.xyz\/*",
                "*:\/\/fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad.onion\/*",
                "*:\/\/qklhadlycap4cnod.onion\/*",
                "*:\/\/c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid.onion\/*",
                "*:\/\/w6ijuptxiku4xpnnaetxvnkc5vqcdu7mgns2u77qefoixi63vbvnpnqd.onion\/*"
            ],
            "js": [
                "assets\/javascripts\/persist-invidious-prefs.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "pages\/options\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "assets\/javascripts\/helpers\/*"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{b7f9d2cd-d772-4302-8c3f-eb941af36f76}",
            "strict_min_version": "67.0"
        }
    }
}