De-t.co

This extension points all t.co urls on a page to their expanded url.

什么是De-t.co?

De-t.co是由johnpbloch开发的Chrome扩展程序,该扩展的主要功能是“This extension points all t.co urls on a page to their expanded url.”。

扩展截图

screenshot

下载De-t.co扩展crx文件

下载De-t.co扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Sometimes twitter's url shortener is slow or unresponsive. Take them out of the equation.

This extension only runs on twitter.com and subdomains of twitter.com.

Since this is a background script, I added a screenshot of kittens. Not sure what else to do.

Image source: http://www.flickr.com/photos/35652310@N00/4139577452/                    

扩展基本信息

名称 De-t.co De-t.co
ID jmdlmkhbhmlgkpjelenjcpgcldhednif
官方URL https://chromewebstore.google.com/detail/de-tco/jmdlmkhbhmlgkpjelenjcpgcldhednif
简介 This extension points all t.co urls on a page to their expanded url.
文件大小 17.79 KB
安装次数 21
当前版本 1.1.1
更新时间 2016-09-13
上架时间 2016-09-12
评分 5.00/5 共2次评分
开发者 johnpbloch
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "De-t.co",
    "description": "This extension points all t.co urls on a page to their expanded url.",
    "version": "1.1.1",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/",
        "https:\/\/*.twitter.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "src\/de-t.co.js"
            ]
        }
    ]
}