TwitShot for Chrome
Spice up your tweets with an image.
TwitShot for Chromeとは何ですか?
TwitShot for Chromeはhttps://twitshot.comによって開発されたChromeの拡張機能で、その主な機能は「Spice up your tweets with an image.」です。
拡張機能のスクリーンショット
TwitShot for Chrome拡張機能のCRXファイルをダウンロード
TwitShot for Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This official extension for TwitShot enables you to do 3 things:
1. Easy access to TwitShot with a special button on twitter.com, right next to the standard Tweet button.
2. TwitShot any Tab by clicking on the TwitShot extension button (top right-hand side of your browser)
3. TwitShot any image you found on the web by right-clicking on it and select "Tweet this image"
Feedback welcome! 拡張機能の基本情報
| 名前 | |
| ID | efndcbfgochdmkgjpinknmeakjfkgjlk |
| 公式URL | https://chromewebstore.google.com/detail/twitshot-for-chrome/efndcbfgochdmkgjpinknmeakjfkgjlk |
| 説明 | Spice up your tweets with an image. |
| ファイルサイズ | 43.02 KB |
| インストール数 | 2,783 |
| 現在のバージョン | 1.0.6 |
| 最終更新日 | 2015-02-18 |
| 公開日 | 2015-02-17 |
| 評価 | 3.71/5 合計 21 レビュー |
| 開発者 | https://twitshot.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://www.twitshot.com |
| ヘルプページのURL | http://twitter.com/twitshotapp |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TwitShot for Chrome",
"short_name": "TwitShot",
"version": "1.0.6",
"manifest_version": 2,
"minimum_chrome_version": "35",
"description": "Spice up your tweets with an image.",
"icons": {
"16": "images\/icons\/icon16.png",
"48": "images\/icons\/icon48.png",
"128": "images\/icons\/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "images\/icons\/icon19.png",
"38": "images\/icons\/icon128.png"
}
},
"background": {
"scripts": [
"vendor\/jquery-2.1.3.min.js",
"background\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*"
],
"js": [
"vendor\/jquery-2.1.3.min.js",
"content_scripts\/twitter\/twitter.js"
],
"css": [
"content_scripts\/twitter\/twitter.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"content_scripts\/*"
],
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"activeTab",
"contextMenus"
]
} | |