Anki Extension
Anki card adder extension.
What is Anki Extension?
Anki Extension is a Chrome extension developed by godotsoftware, and its main feature is "Anki card adder extension.".
Extension Screenshots
Download Anki Extension Extension CRX File
Download Anki Extension 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
Upgrade your language learning process today - no more spending minutes making Anki cards.
Extension Basic Information
Name | |
ID | bgjnheihklkmhfagjcnccibnmemdbgnj |
Official URL | https://chrome.google.com/webstore/detail/anki-extension/bgjnheihklkmhfagjcnccibnmemdbgnj |
Description | Anki card adder extension. |
File Size | 193 KB |
Installation Count | 227 |
Current Version | 1.0.6 |
Last Updated | 2018-12-20 |
Publish Date | 2018-12-16 |
Rating | 1.00/5 Total 1 Ratings |
Developer | godotsoftware |
Payment Type | free |
Extension Website | https://www.easyanki.xyz |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Anki Extension", "description": "Anki card adder extension.", "version": "1.0.6", "manifest_version": 2, "permissions": [ "contextMenus", "storage", "alarms", "tabs" ], "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "Anki Extension", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "inject\/inject.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "web_accessible_resources": [ "inject\/app.css" ] } |