Ankinow
Ankinow is an extension to add words in a web page to Anki
Ankinow क्या है?
Ankinow Ryota Arai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ankinow is an extension to add words in a web page to Anki"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ankinow एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Ankinow is an extension to add words in a web page to Anki. GitHub: https://github.com/ryotarai/chrome-extension-ankinow # Steps to use 1. Install Anki app and AnkiConnect addon beforehand. 2. Keep Anki app running. 3. Install this extension. 4. Open this extension's option page and set deck name. 5. Visit supported site and click "Add to Anki" link. # Supported sites ## English dictionary - [Cambridge Dictionary](https://dictionary.cambridge.org/dictionary/) ## English-Japanese dictionary - [英辞郎 on the web](https://eow.alc.co.jp) - [英辞郎 on the web Pro / Pro Lite](https://eowf.alc.co.jp)
एक्सटेंशन की मूल जानकारी
नाम | Ankinow |
ID | jomhaklahjhfpfdimldnnfpnapicgplk |
आधिकारिक URL | https://chromewebstore.google.com/detail/ankinow/jomhaklahjhfpfdimldnnfpnapicgplk |
विवरण | Ankinow is an extension to add words in a web page to Anki |
फ़ाइल का आकार | 32.03 KB |
स्थापना संख्या | 107 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2021-03-07 |
प्रकाशन तिथि | 2021-03-01 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Ryota Arai |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ankinow", "description": "Ankinow is an extension to add words in a web page to Anki", "version": "0.0.3", "action": { "default_icon": "icon16.png" }, "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "host_permissions": [ "http:\/\/127.0.0.1:8765\/" ], "content_scripts": [ { "matches": [ "https:\/\/eow.alc.co.jp\/*" ], "js": [ "contentScriptEow.js" ] }, { "matches": [ "https:\/\/eowf.alc.co.jp\/*" ], "js": [ "contentScriptEowf.js" ] }, { "matches": [ "https:\/\/dictionary.cambridge.org\/*" ], "js": [ "contentScriptCambridge.js" ] } ], "options_ui": { "page": "options.html" } } |