Inspect and view changes in AnyPage Sticky Note 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
{
"manifest_version": 3,
"content_security_policy": {
"content_security_policy": "script-src 'self'; object-src 'self'"
},
"background": {
"service_worker": "asset/background.js"
},
"action": {
"default_icon": "asset/images/note-icon-128.png",
"default_title": "AnyPage Sticky Note"
},
"content_scripts": [
{
"css": [
"asset/stickies.css"
],
"js": [
"asset/stickies.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"description": "With AnyPage Sticky Note, You can make resizeable sticker notes card on any webpage, notes will loaded again when you reopen page",
"icons": {
"32": "asset/images/note-32.png",
"48": "asset/images/note-icon-128.png",
"128": "asset/images/note-icon-128.png"
},
"name": "AnyPage Sticky Note",
"options_page": "options.html",
"permissions": [
"tabs",
"activeTab",
"notifications"
],
"update_url": "http://clients2.google.com/service/update2/crx",
"version": "0.1.6",
"web_accessible_resources": [
{
"resources": [
"asset/images/*.png",
"asset/images/*.gif"
],
"matches": [
"<all_urls>"
]
}
]
}