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": "CommentGPT: AI Comment Assistant",
"version": "2.4",
"description": "CommentGPT uses AI and image analysis to create context-aware comments for social media. Works on all major platforms. Free to use.",
"permissions": [
"storage",
"scripting"
],
"action": {
"default_icon": {
"16": ".\/assets\/icon\/logo16.png",
"32": ".\/assets\/icon\/logo32.png",
"48": ".\/assets\/icon\/logo48.png",
"128": ".\/assets\/icon\/logo128.png"
},
"default_popup": "popup-secondary.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.facebook.com\/*"
],
"js": [
"facebook_content_script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/*.instagram.com\/*"
],
"js": [
"instagram_content_script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/*.x.com\/*"
],
"js": [
"twitter_content_script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/*.linkedin.com\/*"
],
"js": [
"linkedin_content_script.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": ".\/assets\/icon\/logo16.png",
"32": ".\/assets\/icon\/logo32.png",
"48": ".\/assets\/icon\/logo48.png",
"128": ".\/assets\/icon\/logo128.png"
},
"host_permissions": [
"<all_urls>"
]
}