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 |
| 官方網址 | 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"
]
} | |