Linguee Audio Download
Allows easy downloading of audio from linguee.com - a great multilingual online dictionary
Wat is Linguee Audio Download?
Linguee Audio Download is een Chrome-extensie ontwikkeld door Hank Hester, en de belangrijkste functie is "Allows easy downloading of audio from linguee.com - a great multilingual online dictionary".
Extensie Screenshots
Download het CRX-bestand van de extensie Linguee Audio Download
Download Linguee Audio Download-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
Linguee is a great online multilingual dictionary that provides translations and native recordings of thousands of words across 25 different languages. With this extension turned on, when you visit linguee.com and click on any sound icon, that audio will automatically download to your computer. This functionality can be easily switched on and off from the menu button Source code available at: https://github.com/hankhester/linguee-audio-download
Basisinformatie over de Extensie
Naam | Linguee Audio Download |
ID | mldkoedmkpceicjeobmilbdeebdeljgc |
Officiële URL | https://chromewebstore.google.com/detail/linguee-audio-download/mldkoedmkpceicjeobmilbdeebdeljgc |
Beschrijving | Allows easy downloading of audio from linguee.com - a great multilingual online dictionary |
Bestandsgrootte | 560 KB |
Aantal Installaties | 1,561 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2018-04-10 |
Publicatiedatum | 2018-04-10 |
Beoordeling | 4.21/5 Totaal 19 Beoordelingen |
Ontwikkelaar | Hank Hester |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Linguee Audio Download", "description": "Allows easy downloading of audio from linguee.com - a great multilingual online dictionary", "icons": { "16": "icon16.png", "36": "icon36.png", "48": "icon48.png", "128": "icon36.png" }, "version": "1.5", "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/*.linguee.com\/*", "https:\/\/*.linguee.com\/*", "https:\/\/*.linguee.es\/*", "https:\/\/*.linguee.fr\/*", "https:\/\/*.linguee.se\/*", "https:\/\/*.linguee.hu\/*", "https:\/\/*.linguee.cz\/*", "https:\/\/*.linguee.it\/*", "https:\/\/*.linguee.com.br\/*", "https:\/\/*.linguee.pt\/*", "https:\/\/*.linguee.de\/*", "https:\/\/*.linguee.nl\/*", "https:\/\/*.linguee.pl\/*", "https:\/\/*.linguee.ru\/*", "https:\/\/*.linguee.info\/*", "https:\/\/*.linguee.co.uk\/*", "https:\/\/*.linguee.co\/*", "https:\/\/*.linguee.eu\/*", "https:\/\/*.linguee.jp\/*", "https:\/\/*.linguee.mx\/*", "https:\/\/*.linguee.cl\/*", "https:\/\/*.linguee.cn\/*", "https:\/\/*.linguee.dk\/*", "https:\/\/*.linguee.pe\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon128.png" }, "background": { "scripts": [ "background.js" ] } } |