Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "FMA - Flashcard Maker for Anki",
"version": "0.4.0.0",
"version_name": "0.4.0.0",
"description": "An AI assisted flashcard generator for Anki - Remember & learn as you browse the web!",
"icons": {
"16": "assets\/graphics\/fma16.png",
"32": "assets\/graphics\/fma32.png",
"48": "assets\/graphics\/fma48.png",
"128": "assets\/graphics\/fma128.png",
"200": "assets\/graphics\/fma.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScripts\/main.js"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/soki.ai\/*"
]
},
"background": {
"service_worker": "background\/background.mjs",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"*.mjs",
"*.js",
"*.css",
"*.map"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"alarms",
"tabs",
"storage",
"system.display",
"sidePanel",
"notifications"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"side_panel": {
"default_path": "sidePanel.html?sidePanel=true"
},
"action": {
"default_icon": "assets\/graphics\/fma.png",
"default_title": "Flashcard Maker for Anki",
"default_popup": "popup.html"
},
"commands": {
"openSidebar": {
"suggested_keys": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Opens the sidebar"
}
},
"minimum_chrome_version": "116"
}