Fix my Twitter!

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

什麼是Fix my Twitter!?

Fix my Twitter!是由Zasz開發的Chrome擴展程式,該擴展的主要功能是“Gets back Twitter's old design by changing the useragent string”。

擴展截圖

screenshot
screenshot

下載Fix my Twitter!擴展crx文件

下載Fix my Twitter!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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! Fix my Twitter!
ID cajlejogbjblhiamnihpfhmpaohgakhl
官方網址 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"
    ]
}