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": "Substack Note Scheduler",
"version": "1.1.6",
"description": "Schedule posting notes to Substack by automating the posting process.",
"permissions": [
"alarms",
"storage",
"tabs"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Substack Note Scheduler"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.substack.com\/*",
"https:\/\/substack.com\/*"
],
"js": [
"content.js"
],
"all_frames": true
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
}
],
"host_permissions": [
"https:\/\/substack.com\/*",
"https:\/\/extensionpay.com\/*"
]
}