Fix my Twitter!

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

Fix my Twitter! là gì?

Fix my Twitter! là một tiện ích mở rộng Chrome được phát triển bởi Zasz, và tính năng chính của nó là "Gets back Twitter's old design by changing the useragent string".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fix my Twitter!

Tải xuống các tệp mở rộng Fix my Twitter! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fix my Twitter! Fix my Twitter!
ID cajlejogbjblhiamnihpfhmpaohgakhl
URL Chính Thức https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl
Mô tả Gets back Twitter's old design by changing the useragent string
Kích Thước Tệp 7.22 KB
Số Lần Cài Đặt 376
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-07-20
Ngày Phát Hành 2019-07-19
Đánh Giá 4.26/5 Tổng số 23 Đánh Giá
Nhà Phát Triển Zasz
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}