Take notes for web pages and access them with a single click whenever you visit those web pages again. (Syncs to Google Drive)
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",
"name": "Page Notes",
"version": "3.4.6",
"manifest_version": 3,
"description": "Take notes for web pages and access them with a single click whenever you visit those web pages again. (Syncs to Google Drive)",
"background": {
"service_worker": "background.js",
"type": "module"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_title": "Page Notes",
"default_popup": "popup.html"
},
"icons": {
"16": "icons/icon_16.png",
"19": "icons/icon_19.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"permissions": [
"alarms",
"identity",
"offscreen",
"storage",
"tabs"
],
"host_permissions": [
"https://www.googleapis.com/",
"https://accounts.google.com/"
],
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDc4Q5qsAR/H14mykGNQXNpDidfiQMyRaEV0eX6qk6V4Hq2IzSzGa90UN4EC7Hm5hFJ0Wzr90xLytmp5E+cyL3jF7pAWu9K4DbwbcgZfj29gbgzK2Z7cS6pICgeZmPusT5KXONzNZS6l/3rP0RoI1+4UjIBgDiCOaq0XZgIV5BA7wIDAQAB",
"optional_permissions": [
"scripting"
],
"optional_host_permissions": [
"<all_urls>"
],
"oauth2": {
"client_id": "441023963490-8fj45hkekop8ountdg3k7697ss9c5spv.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.file"
]
}
}