Etymonline
Online Etymology Dictionary
Vad är Etymonline?
Etymonline är en Chrome-tillägg utvecklad av https://www.etymonline.com, och dess huvudfunktion är "Online Etymology Dictionary".
Tilläggsskärmbilder
Ladda ner Etymonline-förlängningens CRX-fil
Ladda ner Etymonline-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | giehjnnlopapngdjbjjgddpaagoimmgl |
| Officiell webbadress | https://chromewebstore.google.com/detail/etymonline/giehjnnlopapngdjbjjgddpaagoimmgl |
| Beskrivning | Online Etymology Dictionary |
| Filstorlek | 82.66 KB |
| Antal Installationer | 51,086 |
| Aktuell Version | 1.8 |
| Senast Uppdaterad | 2021-08-15 |
| Publiceringsdatum | 2018-01-02 |
| Betyg | 4.56/5 Totalt 36 Betyg |
| Utvecklare | https://www.etymonline.com |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://www.etymonline.com/legal/privacy |
| Stödda Språk | 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"
}
]
} | |