Twitter Anonymizer
One-click anonymizer of tweets before sharing a screenshot.
Twitter Anonymizer क्या है?
Twitter Anonymizer Marc Brillault द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "One-click anonymizer of tweets before sharing a screenshot."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter Anonymizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |