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": "Easy Pin Scheduler - A Calendar for Scheduled Pins on Pinterest",
"version": "1.4",
"description": "Manage and view your scheduled Pinterest pins in a calendar!",
"icons": {
"16": "src\/icons\/icon16.png",
"32": "src\/icons\/icon32.png",
"48": "src\/icons\/icon48.png",
"128": "src\/icons\/icon128.png"
},
"permissions": [
"storage",
"sidePanel",
"tabs",
"alarms"
],
"host_permissions": [
"https:\/\/*.pinterest.com\/*",
"https:\/\/easypinscheduler.tonyhill.workers.dev\/*"
],
"action": {
"default_title": "Easy Pin Scheduler"
},
"side_panel": {
"default_path": "src\/sidepanel\/sidepanel.html"
},
"background": {
"service_worker": "src\/background\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.pinterest.com\/*"
],
"js": [
"src\/scripts\/content.js"
],
"css": [
"src\/styles\/calendar.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*.pinterest.com\/pin-builder\/*",
"https:\/\/*.pinterest.com\/idea-pin-builder\/*",
"https:\/\/*.pinterest.com\/pin-creation-tool\/*"
],
"js": [
"src\/scripts\/pin-builder.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"src\/setup\/setup.html",
"src\/setup\/setup.js",
"src\/setup\/setup.css",
"src\/validation\/validation.html",
"src\/validation\/validation.js",
"src\/error\/error.html",
"src\/sidepanel\/sidepanel.html",
"src\/sidepanel\/sidepanel.js",
"src\/icons\/*"
],
"matches": [
"https:\/\/*.pinterest.com\/*",
"https:\/\/easypinscheduler.com\/*",
"https:\/\/easypinscheduler.tonyhill.workers.dev\/*"
]
}
]
}