Etymonline
Online Etymology Dictionary
Was ist Etymonline?
Etymonline ist eine Chrome-Erweiterung, die von https://www.etymonline.com entwickelt wurde, und ihr Hauptmerkmal ist "Online Etymology Dictionary".
Erweiterungsscreenshots
Etymonline-Erweiterungs-CRX-Datei herunterladen
Laden Sie Etymonline-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Etymonline |
ID | giehjnnlopapngdjbjjgddpaagoimmgl |
Offizielle URL | https://chromewebstore.google.com/detail/etymonline/giehjnnlopapngdjbjjgddpaagoimmgl |
Beschreibung | Online Etymology Dictionary |
Dateigröße | 82.66 KB |
Installationsanzahl | 51,086 |
Aktuelle Version | 1.8 |
Letztes Update | 2021-08-15 |
Veröffentlichungsdatum | 2018-01-02 |
Bewertung | 4.56/5 Insgesamt 36 Bewertungen |
Entwickler | https://www.etymonline.com |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.etymonline.com/legal/privacy |
Unterstützte Sprachen | 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" } ] } |