remove-twitter-trends
Switches Twitter trending topics off
remove-twitter-trends क्या है?
remove-twitter-trends Andre Alves Garzia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switches Twitter trending topics off"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में remove-twitter-trends एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.
एक्सटेंशन की मूल जानकारी
नाम | remove-twitter-trends |
ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac |
आधिकारिक URL | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac |
विवरण | Switches Twitter trending topics off |
फ़ाइल का आकार | 1.45 MB |
स्थापना संख्या | 918 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2021-12-31 |
प्रकाशन तिथि | 2021-12-31 |
रेटिंग | 3.43/5 कुल 7 रेटिंग्स |
डेवलपर | Andre Alves Garzia |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "remove-twitter-trends", "description": "Switches Twitter trending topics off", "version": "1.0.1", "icons": { "64": "icons\/icon512.png" }, "background": { "scripts": [ "browser-polyfill.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "css": [ "style.css" ], "js": [ "browser-polyfill.js", "mithril.js", "content_script.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/index.html" }, "permissions": [ "webNavigation", "storage" ] } |