Twitter Anonymizer

One-click anonymizer of tweets before sharing a screenshot.

Twitter Anonymizerคืออะไร?

Twitter Anonymizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marc Brillault และคุณลักษณะหลักของมันคือ "One-click anonymizer of tweets before sharing a screenshot."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Anonymizer

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}