GoodTwitter
Forces your browser to use old twitter.
GoodTwitter क्या है?
GoodTwitter Zusor द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Forces your browser to use old twitter."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GoodTwitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
THIS ADDON IS DEPRECATED AND WILL NO LONGER BE SUPPORTED https://twitter.com/ZusorOW/status/1258885451055800320 This Add-on brings back old twitter by changing the user agent of all your browsers requests to the one of an older browser If this add-on stops working, try the troubleshooting guide. For troubleshooting go here https://github.com/ZusorCode/GoodTwitterChrome/blob/master/troubleshooting.md EXPLANATION FOR REQUIRING THE BROWSING HISTORY PERMISSION: If you install the add-on there will be a warning that it can read your browsing history. This is technically true, however it doesn't. It needs the permission to clean the cache for twitter after installing. GoodTwitter does NOT collect any information about you, it does NOT use any analytics at all. This project is open-source: github.com/ZusorCode/GoodTwitterChrome Want to support me? ko-fi.com/zusordev Built by Zusor inspired by super raging about the redesign
एक्सटेंशन की मूल जानकारी
नाम | GoodTwitter |
ID | jbanhionoclikdjnjlcmefiofgjimgca |
आधिकारिक URL | https://chromewebstore.google.com/detail/goodtwitter/jbanhionoclikdjnjlcmefiofgjimgca |
विवरण | Forces your browser to use old twitter. |
फ़ाइल का आकार | 11.05 KB |
स्थापना संख्या | 47,807 |
वर्तमान संस्करण | 2.2 |
अंतिम अपडेट | 2020-05-08 |
प्रकाशन तिथि | 2020-05-08 |
रेटिंग | 4.69/5 कुल 945 रेटिंग्स |
डेवलपर | Zusor |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GoodTwitter", "version": "2.2", "description": "Forces your browser to use old twitter.", "manifest_version": 2, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*.twitter.com\/", "browsingData", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "remove-banner.js" ] } ], "browser_action": { "default_popup": "popup\/info.html" }, "icons": { "128": "128.png" } } |