fasterLinks

For all you short URLs haters!

fasterLinks là gì?

fasterLinks là một tiện ích mở rộng Chrome được phát triển bởi paul.leclercq, và tính năng chính của nó là "For all you short URLs haters!".

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

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

                        For all you shortened URLs haters on Twitter or TweetDeck

Replaces all shortened URLs with real URLs without UTM to save precious seconds and finally know where we click without being tracked.




Twitter redirects every URLs to t.co in order to track clicks, OK cool, why not, but it makes us waste some precious seconds of our life everytime we click on a link on Twitter.
To counter that, this extension removes all links with a t.co redirect with their real URLs, and also display the full address on the tweet because who gives a f. to the 140 chars limit on Tweeter?


Open-source : https://github.com/polomarcus/faster-links                    

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

Tên fasterLinks fasterLinks
ID ojggkiabpbjlckhpaphgdhhojgcpimah
URL Chính Thức https://chromewebstore.google.com/detail/fasterlinks/ojggkiabpbjlckhpaphgdhhojgcpimah
Mô tả For all you short URLs haters!
Kích Thước Tệp 183 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2016-09-01
Ngày Phát Hành 2016-09-01
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển paul.leclercq
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}