Quick Define
Shows popup definition of selected term
什麼是Quick Define?
Quick Define是由Anton Samoylov開發的Chrome擴展程式,該擴展的主要功能是“Shows popup definition of selected term”。
擴展截圖
下載Quick Define擴展crx文件
下載Quick Define擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The wisdom of humankind two clicks away! Select any text in Chrome to receive instant definition and answers; no need to copy and paste! Also you won't lose your context, as the definition is showed on the same page. 擴展基本資訊
| 名稱 | |
| ID | dklgknckeahgflaffkncodfpjcignmin |
| 官方網址 | https://chrome.google.com/webstore/detail/quick-define/dklgknckeahgflaffkncodfpjcignmin |
| 簡介 | Shows popup definition of selected term |
| 檔案大小 | 15.18 KB |
| 安裝次數 | 45 |
| 目前版本 | 0.0.2 |
| 更新時間 | 2015-01-12 |
| 上架時間 | 2015-01-12 |
| 評分 | 1.00/5 共 1 次評分 |
| 開發者 | Anton Samoylov |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Quick Define",
"description": "Shows popup definition of selected term",
"version": "0.0.2",
"permissions": [
"contextMenus",
"activeTab",
"https:\/\/www.googleapis.com\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"page.js",
"popup.js"
],
"css": [
"popup.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "QuickDefineLogoBlack128.png"
},
"manifest_version": 2
} | |