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 Code Detector Pro",
"version": "1.0.0",
"description": "Professional AI code detection for GitHub repositories using GPT-5",
"permissions": [
"activeTab",
"storage",
"tabs",
"contextMenus"
],
"host_permissions": [
"https:\/\/github.com\/*",
"https:\/\/api.github.com\/*",
"https:\/\/api.openai.com\/*",
"https:\/\/api.anthropic.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "AI Code Detector Pro"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}