Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
什麼是Search On Twitter?
Search On Twitter是由http://www.thetravisw.com開發的Chrome擴展程式,該擴展的主要功能是“Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu”。
擴展截圖
下載Search On Twitter擴展crx文件
下載Search On Twitter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Search On Twitter adds to the Right-Click context menu.
If the selected text starts with "@", the option to open Twitter profile will be presented. If the selected does not begin with "@", then the option to search on Twitter will be presented.
Source Code - https://github.com/travis-w/Search-On-Twitter 擴展基本資訊
| 名稱 | |
| ID | dhpmpdpphfgejncefefmdhklfbliefkm |
| 官方網址 | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
| 簡介 | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
| 檔案大小 | 9.53 KB |
| 安裝次數 | 465 |
| 目前版本 | 1.0 |
| 更新時間 | 2014-09-28 |
| 上架時間 | 2014-09-28 |
| 評分 | 3.71/5 共 7 次評分 |
| 開發者 | http://www.thetravisw.com |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Search On Twitter",
"description": "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu ",
"version": "1.0",
"manifest_version": 2,
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"permissions": [
"contextMenus",
"tabs"
],
"background": {
"scripts": [
"js\/main.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/contentscript.js"
]
}
]
} | |