Fix Twitter

Fix dumb things about Twitter and TweetDeck on the web (e.g. hidden “replying to”, t.co links)

Fix Twitter là gì?

Fix Twitter là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Suh, và tính năng chính của nó là "Fix dumb things about Twitter and TweetDeck on the web (e.g. hidden “replying to”, t.co links)".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Fix 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

                        Fix dumb things about the Twitter and TweetDeck on the web.
- Always show “replying to” in replies and threads.
- Enable old school @-mention replies.
- Replace https://t.co links with the original links (wherever possible).
- Hide “in case you missed” notifications.

Details:
- Should replace most (but not all) https://t.co links—it only replaces ones where the data of the original URL is available in the code.
- Runs in the background and only executes in tabs open to twitter.com or tweetdeck.com.
- Runs every 3 seconds (polling interval customizable in options). Only shows hidden “replying to” that haven’t already been restored and only replaces new t.co links that haven’t already been changed (i.e. when you first load twitter.com, navigate to a new page, open a modal, load more tweets, etc.)
- Permission is listed as being able to “Read and change your data on tweetdeck.twitter.com and twitter.com” but none of your data is being read, stored, sent or otherwise by me or anyone else.
- If you’re curious or skeptical, I open-sourced this extension so you can see what’s happening under the hood at https://github.com/jonsuh/fix-twitter.                    

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

Tên Fix Twitter Fix Twitter
ID gnmfhemkaclbeooiklobpejpoihpfnfd
URL Chính Thức https://chromewebstore.google.com/detail/fix-twitter/gnmfhemkaclbeooiklobpejpoihpfnfd
Mô tả Fix dumb things about Twitter and TweetDeck on the web (e.g. hidden “replying to”, t.co links)
Kích Thước Tệp 8.38 KB
Số Lần Cài Đặt 488
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-03-12
Ngày Phát Hành 2018-03-12
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Jonathan Suh
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jonsuh/fix-twitter/
URL Trang Trợ Giúp https://github.com/jonsuh/fix-twitter/issues/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fix Twitter",
    "version": "1.2",
    "manifest_version": 2,
    "author": "Jonathan Suh ",
    "description": "Fix dumb things about Twitter and TweetDeck on the web (e.g. hidden \u201creplying to\u201d, t.co links)",
    "homepage_url": "https:\/\/github.com\/jonsuh\/fix-twitter\/",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/twitter.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}