Quick Define
Shows popup definition of selected term
Cos'è Quick Define?
Quick Define è un'estensione di Chrome sviluppata da Anton Samoylov, e la sua funzione principale è "Shows popup definition of selected term".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quick Define
Scarica i file di estensione Quick Define in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | dklgknckeahgflaffkncodfpjcignmin |
URL Ufficiale | https://chrome.google.com/webstore/detail/quick-define/dklgknckeahgflaffkncodfpjcignmin |
Descrizione | Shows popup definition of selected term |
Dimensione del File | 15.18 KB |
Conteggio Installazioni | 45 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2015-01-12 |
Data di Pubblicazione | 2015-01-12 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | Anton Samoylov |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |