Inspect and view changes in pagenote 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,
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionShortName__",
"version": "0.29.22",
"description": "__MSG_extensionDescription__",
"default_locale": "zh_CN",
"icons": {
"16": "images/light-16.png",
"32": "images/light-32.png",
"48": "images/light-48.png",
"64": "images/light-64.png",
"96": "images/light-96.png",
"128": "images/light-128.png"
},
"permissions": [
"activeTab",
"bookmarks",
"downloads",
"tabs",
"alarms",
"storage",
"contextMenus",
"notifications",
"unlimitedStorage",
"scripting",
"webNavigation"
],
"optional_permissions": [],
"host_permissions": [
"<all_urls>",
"*://*/*",
"file://*/*"
],
"action": {
"default_icon": {
"16": "images/light-16.png",
"32": "images/light-32.png",
"48": "images/light-48.png",
"64": "images/light-64.png",
"96": "images/light-96.png",
"128": "images/light-128.png"
},
"default_title": "此页面尚未准备完毕,刷新页面或切换至其他页面试试?",
"default_popup": "/web/ext/popup.html"
},
"options_ui": {
"open_in_tab": true,
"page": "/web/ext/setting.html"
},
"homepage_url": "https://pagenote.cn?ext=firefox",
"commands": {
"_execute_action": {
"description": "__MSG_active_extension__",
"suggested_key": {
"default": "Alt+P"
}
},
"open_manage": {
"description": "__MSG_open_manage__",
"suggested_key": {
"default": "Alt+M"
}
},
"capture": {
"description": "__MSG_capture_tabview__",
"suggested_key": {
"default": "Alt+K"
}
},
"offline_html": {
"description": "__MSG_offline_html__",
"suggested_key": {
"default": "Alt+D"
}
}
},
"background": {
"scripts": [
"rollup/background.js"
]
},
"content_scripts": [
{
"all_frames": false,
"matches": [
"*://*/*",
"file://*/*"
],
"run_at": "document_start",
"js": [
"rollup/tab_main.js"
]
},
{
"all_frames": true,
"matches": [
"*://*/*",
"file://*/*"
],
"run_at": "document_start",
"js": [
"rollup/tab_page.js"
]
},
{
"all_frames": true,
"matches": [
"*://pagenote.cn/*",
"*://dev.pagenote.cn/*",
"*://test.pagenote.cn/*",
"*://www.pagenote.cn/*",
"*://developer.pagenote.cn/*",
"*://logike.cn/*",
"*://pagenote.logike.cn/*",
"*://127.0.0.1/*",
"*://localhost/*"
],
"run_at": "document_start",
"js": [
"rollup/open_api_bridge.js",
"rollup/source.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"images/**",
"lib/**",
"/**"
],
"matches": [
"*://*/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{e0ac6ae8-85d8-4a47-8fa5-720e2b83f140}"
}
}
}