Vocab Swap
Learn a language while browsing the internet
Co to jest Vocab Swap?
Vocab Swap to rozszerzenie Chrome opracowane przez http://vocabswap.com, a jego główną funkcją jest „Learn a language while browsing the internet”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Vocab Swap
Pobierz pliki rozszerzeń Vocab Swap w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Vocab Swap helps you effortlessly learn a new language while you surf the web. Add words that you're learning, and Vocab Swap will automatically replace those words on web pages that you visit.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | aohlhfpmngfjpjfficefmhcpabejdkio |
Oficjalny URL | https://chrome.google.com/webstore/detail/vocab-swap/aohlhfpmngfjpjfficefmhcpabejdkio |
Opis | Learn a language while browsing the internet |
Rozmiar pliku | 480 KB |
Liczba instalacji | 70 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2019-03-08 |
Data Publikacji | 2019-03-08 |
Ocena | 4.25/5 Łącznie 4 Oceny |
Deweloper | http://vocabswap.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://vocabswap.com |
Adres URL Strony Pomocy | https://vocabswap.com |
Adres URL Strony Polityki Prywatności | https://vocabswap.com |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Vocab Swap", "version": "1.1", "description": "Learn a language while browsing the internet", "manifest_version": 2, "permissions": [ "declarativeContent", "*:\/\/*\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_idle", "js": [ "content-scripts\/libs\/findAndReplaceDOMText.js", "content-scripts\/content.js" ] } ], "background": { "scripts": [ "dist\/background.bundle.js" ], "persistent": false }, "page_action": { "default_popup": "popup\/popup.html" } } |