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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}