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": "PrompTube - Search YouTube With Prompts",
"version": "2.1",
"description": "Search YouTube using natural language prompts. Easily convert your ideas into relevant YouTube search results.",
"permissions": [
"identity",
"storage"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/promptube-backend.s3.amazonaws.com\/*",
"https:\/\/g5vonlvebkvjaggsld3a57ve2m0rchyi.lambda-url.ap-south-1.on.aws\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/promptube-backend.s3.amazonaws.com\/*",
"https:\/\/g5vonlvebkvjaggsld3a57ve2m0rchyi.lambda-url.ap-south-1.on.aws\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png"
}
}
}