Etymonline
Online Etymology Dictionary
Wat is Etymonline?
Etymonline is een Chrome-extensie ontwikkeld door https://www.etymonline.com, en de belangrijkste functie is "Online Etymology Dictionary".
Extensie Screenshots
Download het CRX-bestand van de extensie Etymonline
Download Etymonline-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Skip the home page. Search any word or phrase from the 50,000 entries in the Online Etymology Dictionary directly from your Chrome toolbar with this one-click extension. Update log: V1.8: * Bug fixes.
Basisinformatie over de Extensie
Naam | Etymonline |
ID | giehjnnlopapngdjbjjgddpaagoimmgl |
Officiële URL | https://chromewebstore.google.com/detail/etymonline/giehjnnlopapngdjbjjgddpaagoimmgl |
Beschrijving | Online Etymology Dictionary |
Bestandsgrootte | 82.66 KB |
Aantal Installaties | 51,086 |
Huidige Versie | 1.8 |
Laatst Bijgewerkt | 2021-08-15 |
Publicatiedatum | 2018-01-02 |
Beoordeling | 4.56/5 Totaal 36 Beoordelingen |
Ontwikkelaar | https://www.etymonline.com |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.etymonline.com/legal/privacy |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Etymonline", "version": "1.8", "description": "Online Etymology Dictionary", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": { "48": "images\/icon-48.png" }, "default_title": "Etymonline chrome extension", "default_popup": "index.html" }, "permissions": [ "https:\/\/www.etymonline.com\/*", "contextMenus" ], "background": { "scripts": [ "js\/axios.min.js", "js\/background.js" ] }, "omnibox": { "keyword": "etymology" }, "content_scripts": [ { "matches": [ "https:\/\/www.etymonline.com\/*" ], "js": [ "js\/content-script.js" ], "run_at": "document_end" } ] } |