Twitter Direct Links
Makes links in twitter feed direct.
什么是Twitter Direct Links?
Twitter Direct Links是由philatov开发的Chrome扩展程序,该扩展的主要功能是“Makes links in twitter feed direct.”。
扩展截图
下载Twitter Direct Links扩展crx文件
下载Twitter Direct Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension may be useful when you have a difficulties with t.co link shortener. Extension is just replaces link with direct one.
扩展基本信息
名称 | Twitter Direct Links |
ID | chgdginonhphdfgpbhcnhmmglobclkie |
官方URL | https://chromewebstore.google.com/detail/twitter-direct-links/chgdginonhphdfgpbhcnhmmglobclkie |
简介 | Makes links in twitter feed direct. |
文件大小 | 45.09 KB |
安装次数 | 38 |
当前版本 | 1.0.1 |
更新时间 | 2014-04-19 |
上架时间 | 2014-04-19 |
评分 | 3.75/5 共4次评分 |
开发者 | philatov |
付费类型 | free |
支持的语言 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.1", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.twitter.com\/*", "https:\/\/*.twitter.com\/*" ], "js": [ "jquery-2.1.0.min.js", "contentscript.js" ] } ], "permissions": [ "tabs", "http:\/\/*.twitter.com\/", "https:\/\/*.twitter.com\/" ], "page_action": { "default_title": "Twitter Direct Links", "default_icon": { "19": "icon-19.png", "38": "icon-38.png" } } } |