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": "CommentCraft",
"version": "1.0.0",
"description": "AI-powered comment suggestions for Twitter\/X and LinkedIn to boost engagement and grow your audience",
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*",
"https:\/\/www.linkedin.com\/*",
"https:\/\/chatgpt.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/x.com\/*",
"https:\/\/www.linkedin.com\/*"
],
"js": [
"config.js",
"utils.js",
"storage.js",
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"js": [
"chatgpt-inject.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/CommentCraft_Logo.png",
"48": "images\/CommentCraft_Logo.png",
"128": "images\/CommentCraft_Logo.png"
}
},
"icons": {
"16": "images\/CommentCraft_Logo.png",
"48": "images\/CommentCraft_Logo.png",
"128": "images\/CommentCraft_Logo.png"
}
}