Fix my Twitter!
Gets back Twitter's old design by changing the useragent string
Vad är Fix my Twitter!?
Fix my Twitter! är en Chrome-tillägg utvecklad av Zasz, och dess huvudfunktion är "Gets back Twitter's old design by changing the useragent string".
Tilläggsskärmbilder
Ladda ner Fix my Twitter!-förlängningens CRX-fil
Ladda ner Fix my Twitter!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | cajlejogbjblhiamnihpfhmpaohgakhl |
| Officiell webbadress | https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl |
| Beskrivning | Gets back Twitter's old design by changing the useragent string |
| Filstorlek | 7.22 KB |
| Antal Installationer | 376 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2019-07-20 |
| Publiceringsdatum | 2019-07-19 |
| Betyg | 4.26/5 Totalt 23 Betyg |
| Utvecklare | Zasz |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |