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": "Squarespace Ninja Kit Extension",
"version": "2.2",
"description": "Upgrade your website to the next level - NinjaKit",
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"https:\/\/*.squarespace.com\/config\/*"
],
"icons": {
"16": "assets\/images\/ninjakit_enable.png",
"48": "assets\/images\/ninjakit_enable.png",
"128": "assets\/images\/ninjakit_enable.png"
},
"action": {
"default_icon": "assets\/images\/ninjakit_enable.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.squarespace.com\/config\/*"
],
"js": [
"assets\/js\/ninjakit.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"assets\/js\/content-frame.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"images\/*"
],
"matches": [
"https:\/\/*.squarespace.com\/*"
]
}
]
}