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": "ASMR.so - AI ASMR Video Generator Prompts",
"version": "1.0.0",
"description": "Quick access to AI ASMR video templates from ASMR.so - Generate AI-powered ASMR videos instantly",
"permissions": [
"activeTab",
"storage",
"tabs",
"notifications"
],
"host_permissions": [
"https:\/\/www.asmr.so\/*",
"http:\/\/localhost:3000\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.asmr.so\/*",
"http:\/\/localhost:3000\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "ASMR.so Video Templates",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline';"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"https:\/\/www.asmr.so\/*",
"http:\/\/localhost:3000\/*"
]
}
]
}