WordUp
Word Up Extension
Cos'è WordUp?
WordUp è un'estensione di Chrome sviluppata da learningmadelazy, e la sua funzione principale è "Word Up Extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WordUp
Scarica i file di estensione WordUp 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
a tool that increases a users vocabulary while simultaneously tracking metrics that relate to how frequent an individual is aware of terms they have not previously encountered Informazioni di Base sull'Estensione
| Nome | |
| ID | ghjjpmcbdidjlmghhfmphbjllkhmaaof |
| URL Ufficiale | https://chromewebstore.google.com/detail/wordup/ghjjpmcbdidjlmghhfmphbjllkhmaaof |
| Descrizione | Word Up Extension |
| Dimensione del File | 247 KB |
| Conteggio Installazioni | 40 |
| Versione Corrente | 1.3 |
| Ultimo Aggiornamento | 2021-02-03 |
| Data di Pubblicazione | 2020-09-22 |
| Sviluppatore | learningmadelazy |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WordUp",
"description": "Word Up Extension",
"version": "1.3",
"manifest_version": 2,
"omnibox": {
"keyword": "nt"
},
"icons": {
"16": "search16.png",
"32": "search32.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_icon": "ExtensionIcon.png"
},
"content_security_policy": "script-src 'self' https:\/\/www.gstatic.com; object-src 'self'",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens hello.html"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"Html\/Toolbar.js",
"contentScript.js"
]
}
],
"web_accessible_resources": [
"Html\/Toolbar.html",
"Html\/Toolbar.css",
"Html\/ItemTemplate\/WordListItemTemplate.html",
"Html\/Graph.html",
"Html\/Graph.js",
"Popup.js"
]
} | |