Vocab Swap
Learn a language while browsing the internet
Vocab Swapとは何ですか?
Vocab Swapはhttp://vocabswap.comによって開発されたChromeの拡張機能で、その主な機能は「Learn a language while browsing the internet」です。
拡張機能のスクリーンショット
Vocab Swap拡張機能のCRXファイルをダウンロード
Vocab Swap拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | aohlhfpmngfjpjfficefmhcpabejdkio |
公式URL | https://chrome.google.com/webstore/detail/vocab-swap/aohlhfpmngfjpjfficefmhcpabejdkio |
説明 | Learn a language while browsing the internet |
ファイルサイズ | 480 KB |
インストール数 | 70 |
現在のバージョン | 1.1 |
最終更新日 | 2019-03-08 |
公開日 | 2019-03-08 |
評価 | 4.25/5 合計 4 レビュー |
開発者 | http://vocabswap.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://vocabswap.com |
ヘルプページのURL | https://vocabswap.com |
プライバシーポリシーページのURL | https://vocabswap.com |
対応言語 | 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" } } |