Twitter Timeline Eradicator
This extension removes timelines from twitter, to help you avoid mindless consumption.
Twitter Timeline Eradicator क्या है?
Twitter Timeline Eradicator Bryan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension removes timelines from twitter, to help you avoid mindless consumption."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter Timeline Eradicator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
It hides the most addictive parts of Twitter, like the main timeline, the Explore timeline, moments, and Trending. It shows the most useful parts of twitter, like notifications, user profiles, individual tweets, and DMs.
एक्सटेंशन की मूल जानकारी
नाम | Twitter Timeline Eradicator |
ID | olmgbkhifmcfpaagiaakihcgobdkmchl |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitter-timeline-eradicat/olmgbkhifmcfpaagiaakihcgobdkmchl |
विवरण | This extension removes timelines from twitter, to help you avoid mindless consumption. |
फ़ाइल का आकार | 40.07 KB |
स्थापना संख्या | 1,073 |
वर्तमान संस्करण | 2.0.1 |
अंतिम अपडेट | 2020-07-20 |
प्रकाशन तिथि | 2020-07-03 |
रेटिंग | 4.42/5 कुल 19 रेटिंग्स |
डेवलपर | Bryan |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/bryanbraun/twitter-timeline-eradicator |
सहायता पृष्ठ URL | https://github.com/bryanbraun/twitter-timeline-eradicator/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Timeline Eradicator", "description": "This extension removes timelines from twitter, to help you avoid mindless consumption.", "version": "2.0.1", "permissions": [ "activeTab", "storage", "https:\/\/twitter.com\/" ], "browser_action": { "default_icon": "quiet-bird.png", "default_popup": "popup.html", "default_title": "Twitter Timeline Eradicator" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "clean.js" ], "css": [ "default.css" ] } ], "web_accessible_resources": [ "enable-main-timeline.css", "enable-trending.css" ] } |