Fix my Twitter!
Gets back Twitter's old design by changing the useragent string
Qu'est-ce que Fix my Twitter! ?
Fix my Twitter! est une extension Chrome développée par Zasz, et sa fonction principale est "Gets back Twitter's old design by changing the useragent string".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fix my Twitter!
Téléchargez les fichiers d'extension Fix my Twitter! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Fix my Twitter! |
ID | cajlejogbjblhiamnihpfhmpaohgakhl |
URL Officiel | https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl |
Description | Gets back Twitter's old design by changing the useragent string |
Taille du Fichier | 7.22 KB |
Nombre d'Installations | 376 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2019-07-20 |
Date de Publication | 2019-07-19 |
Évaluation | 4.26/5 Total 23 Évaluations |
Développeur | Zasz |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |