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": "Wordara - Smarter Prompts And Writing",
"version": "1.3.6",
"description": "Simplify your AI prompts with one click using advanced AI optimization",
"permissions": [
"storage",
"scripting",
"tabs",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js",
"content-ui.js",
"content-ask.js"
],
"css": [
"content.css"
],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
},
{
"matches": [
"https:\/\/wordara.cc\/*"
],
"js": [
"dashboard-sync.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"commands": {
"show-wordara": {
"suggested_key": {
"default": "Alt+W",
"mac": "Alt+W",
"windows": "Alt+W",
"linux": "Alt+W"
},
"description": "Show the Wordara action palette"
},
"run-wordara-default-action": {
"suggested_key": {
"default": "Alt+D",
"mac": "Alt+D",
"windows": "Alt+D",
"linux": "Alt+D"
},
"description": "Run the current default Wordara action"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"omnibox": {
"keyword": "wordara"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"icons\/icon16.png",
"icons\/icon32.png",
"icons\/icon48.png",
"icons\/icon128.png"
],
"matches": [
"<all_urls>"
]
}
]
}