Twitter Anonymizer

One-click anonymizer of tweets before sharing a screenshot.

什麼是Twitter Anonymizer?

Twitter Anonymizer是由Marc Brillault開發的Chrome擴展程式,該擴展的主要功能是“One-click anonymizer of tweets before sharing a screenshot.”。

擴展截圖

screenshot

下載Twitter Anonymizer擴展crx文件

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

擴展使用說明

                        Want to share a content from Twitter, but you don't want to risk the harassment of the user ?
With Twitter Anonymizer, the solution is just a click away !

Right click anywhere on a twitter page, select "Toggle anonymization", and see that every user name and icon in the thread is now unidentifiable. You can now take a screenshot of the page.

Repeat the process to revert the page to its original state.                    

擴展基本資訊

名稱 Twitter Anonymizer Twitter Anonymizer
ID dliaabmcomhfhpibgbljmcjfgfkjbalf
官方網址 https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf
簡介 One-click anonymizer of tweets before sharing a screenshot.
檔案大小 33.64 KB
安裝次數 40
目前版本 1.3.1
更新時間 2023-07-20
上架時間 2022-07-07
開發者 Marc Brillault
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/MarcBrillault/twitter-anonymizer
說明頁面URL https://github.com/MarcBrillault/twitter-anonymizer/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Anonymizer",
    "description": "One-click anonymizer of tweets before sharing a screenshot.",
    "version": "1.3.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png",
        "32": "icon-32.png"
    },
    "permissions": [
        "contextMenus",
        "scripting"
    ]
}