Fix my Twitter!
Gets back Twitter's old design by changing the useragent string
Fix my Twitter! क्या है?
Fix my Twitter! Zasz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gets back Twitter's old design by changing the useragent string"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fix my Twitter! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Almost everyone agrees Twitter's new design is ugly. *Very* ugly. This add-on gets you back the old style! It changes the UA string to IE11's and fixes the clipboard. IMPORTANT: you HAVE to clear Twitter's cookies on install, as this is not something that can be done automatically on Chrome. The source code can be found at: https://github.com/zaszthecroc/fix-my-twitter Permissions: * "https://twitter.com/*": needed for access to the webRequest API * "webRequest", "webRequestBlocking": needed to edit the requests' headers before sending * "browsingData": needed to clear Twitter's cookies
एक्सटेंशन की मूल जानकारी
नाम | Fix my Twitter! |
ID | cajlejogbjblhiamnihpfhmpaohgakhl |
आधिकारिक URL | https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl |
विवरण | Gets back Twitter's old design by changing the useragent string |
फ़ाइल का आकार | 7.22 KB |
स्थापना संख्या | 376 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2019-07-20 |
प्रकाशन तिथि | 2019-07-19 |
रेटिंग | 4.26/5 कुल 23 रेटिंग्स |
डेवलपर | Zasz |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Gets back Twitter's old design by changing the useragent string", "manifest_version": 2, "version": "1.2", "name": "Fix my Twitter!", "icons": { "48": "img\/48.png", "96": "img\/96.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content-script.js" ] } ], "permissions": [ "https:\/\/twitter.com\/*", "webRequest", "webRequestBlocking", "browsingData" ] } |