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",
"name": "Summify: AI Youtube Summarizer With ChatGPT",
"version": "1.1.3",
"description": "Summarize Youtube Videos with ChatGPT",
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"http:\/\/localhost:3000\/*",
"https:\/\/www.summifyai.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"css": [
"styles\/globals.css"
],
"js": [
"contentScript.js"
]
},
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/*.chatgpt.com\/*"
],
"js": [
"chatContentScript.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "mainBackgroundScript.js"
},
"icons": {
"16": "logo48.png",
"48": "logo48.png",
"128": "logo128.png"
},
"action": {
"default_title": "Summify",
"default_popup": "popup.html",
"default_icon": "logo128.png"
},
"web_accessible_resources": [
{
"resources": [
"logo32.png"
],
"matches": [
"https:\/\/*.youtube.com\/*"
]
}
],
"externally_connectable": {
"matches": [
"http:\/\/localhost:3000\/*",
"https:\/\/www.summifyai.com\/*"
]
},
"manifest_version": 3
}