Fix my Twitter!

Gets back Twitter's old design by changing the useragent string

Co je Fix my Twitter!?

Fix my Twitter! je rozšíření Chrome vyvinuté Zasz, a jeho hlavní funkcí je „Gets back Twitter's old design by changing the useragent string“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Fix my Twitter!

Stáhněte si soubory rozšíření Fix my Twitter! ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Fix my Twitter! Fix my Twitter!
ID cajlejogbjblhiamnihpfhmpaohgakhl
Oficiální URL https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl
Popis Gets back Twitter's old design by changing the useragent string
Velikost souboru 7.22 KB
Počet instalací 376
Aktuální Verze 1.2
Poslední Aktualizace 2019-07-20
Datum Vydání 2019-07-19
Hodnocení 4.26/5 Celkem 23 Hodnocení
Vývojář Zasz
Typ Platby free
Podporované Jazyky 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"
    ]
}