Vocab Swap
Learn a language while browsing the internet
What is Vocab Swap?
Vocab Swap is a Chrome extension developed by http://vocabswap.com, and its main feature is "Learn a language while browsing the internet".
Extension Screenshots
Download Vocab Swap Extension CRX File
Download Vocab Swap 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
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.
Extension Basic Information
Name | |
ID | aohlhfpmngfjpjfficefmhcpabejdkio |
Official URL | https://chrome.google.com/webstore/detail/vocab-swap/aohlhfpmngfjpjfficefmhcpabejdkio |
Description | Learn a language while browsing the internet |
File Size | 480 KB |
Installation Count | 70 |
Current Version | 1.1 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 4.25/5 Total 4 Ratings |
Developer | http://vocabswap.com |
[email protected] | |
Payment Type | free |
Extension Website | https://vocabswap.com |
Help Page URL | https://vocabswap.com |
Privacy Policy Page URL | https://vocabswap.com |
Supported Languages | 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" } } |