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 |
公式URL | 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 } |