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": "AI Tweet Generator Bot",
"version": "1.0",
"description": "Generates tweets based on keywords",
"permissions": [
"scripting",
"activeTab"
],
"icons": {
"16": ".\/images\/16.png",
"48": ".\/images\/48.png",
"128": ".\/images\/128.png"
},
"host_permissions": [
"https:\/\/api.openai.com\/*",
"https:\/\/twitter.com\/*"
],
"action": {
"default_popup": ".\/popup\/popup.html",
"default_title": "Generate Tweet",
"default_icon": {
"16": ".\/images\/16.png",
"48": ".\/images\/48.png"
}
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"content.js"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"commands": {
"generate_tweet": {
"suggested_key": {
"default": "Ctrl+Shift+F"
},
"description": "Generate Tweet"
}
}
}