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. 擴展基本資訊
| 名稱 | |
| ID | chgdginonhphdfgpbhcnhmmglobclkie |
| 官方網址 | 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"
}
}
} | |