Etymonline
Online Etymology Dictionary
What is Etymonline?
Etymonline is a Chrome extension developed by https://www.etymonline.com, and its main feature is "Online Etymology Dictionary".
Extension Screenshots
Download Etymonline Extension CRX File
Download Etymonline extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Etymonline |
ID | giehjnnlopapngdjbjjgddpaagoimmgl |
Official URL | https://chromewebstore.google.com/detail/etymonline/giehjnnlopapngdjbjjgddpaagoimmgl |
Description | Online Etymology Dictionary |
File Size | 82.66 KB |
Installation Count | 51,086 |
Current Version | 1.8 |
Last Updated | 2021-08-15 |
Publish Date | 2018-01-02 |
Rating | 4.56/5 Total 36 Ratings |
Developer | https://www.etymonline.com |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.etymonline.com/legal/privacy |
Supported Languages | 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" } ] } |