QuickTweet
A Twitter ToolKit by Will
什麼是QuickTweet?
QuickTweet是由cobwebsteruk開發的Chrome擴展程式,該擴展的主要功能是“A Twitter ToolKit by Will”。
擴展截圖
下載QuickTweet擴展crx文件
下載QuickTweet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A Quick Tweeting tool which allows you to tweet selections, pages, images and URLS without the need of typing or going to twitter.
Right click anywhere on a page to tweet the page URL
Right click selected text to tweet the text
Right click a image to tweet the image
Right click a link to tweet the link 擴展基本資訊
| 名稱 | |
| ID | glongeojkcbhnkhjjlbijdcfgmndigjp |
| 官方網址 | https://chromewebstore.google.com/detail/quicktweet/glongeojkcbhnkhjjlbijdcfgmndigjp |
| 簡介 | A Twitter ToolKit by Will |
| 檔案大小 | 15.44 KB |
| 安裝次數 | 140 |
| 目前版本 | 1.1 |
| 更新時間 | 2017-07-10 |
| 上架時間 | 2017-07-10 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | cobwebsteruk |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "QuickTweet",
"description": "A Twitter ToolKit by Will",
"version": "1.1",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"64": "bigicon.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"myscript.js"
]
}
],
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/",
"contextMenus"
]
} | |