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 |
| 公式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"
}
}
} | |