Inspect and view changes in Scratchpad source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Scratchpad",
"description": "Bring your sales workflow into the new tab",
"homepage_url": "https://scratchpad.com",
"default_locale": "en",
"icons": {
"16": "icons/scratchpad-icon-16px.png",
"48": "icons/scratchpad-icon-48px.png",
"128": "icons/scratchpad-icon-128px.png"
},
"action": {
"default_icon": {
"16": "icons/scratchpad-icon-16px.png",
"48": "icons/scratchpad-icon-48px.png",
"128": "icons/scratchpad-icon-128px.png"
}
},
"permissions": [
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"https://*.scratchpad.com/*",
"https://localhost.dev:5002/*"
],
"optional_host_permissions": [
"https://*.salesforce.com/",
"https://*.force.com/",
"http://*/*",
"https://*/*"
],
"optional_permissions": [
"bookmarks",
"favicon"
],
"content_security_policy": {
"extension_pages": "object-src 'self'; script-src 'self' ; "
},
"externally_connectable": {
"matches": [
"https://*.scratchpad.com/*",
"https://localhost.dev:8090/*",
"https://localhost.dev:5002/*"
]
},
"background": {
"service_worker": "background.js"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"web_accessible_resources": [
{
"resources": [
"iframeGlobalSearch.html",
"iframeNotesList.html",
"iframeGlobalSearchSkeleton.html",
"studio.html"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"_favicon/*"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"*"
]
}
],
"version": "20.226.0"
}