pagenote一页一记

在任意网页内,摘录重点、划线批注。打造个人笔记系统。

What is pagenote一页一记?

pagenote一页一记 is a Chrome extension developed by https://pagenote.cn, and its main feature is "在任意网页内,摘录重点、划线批注。打造个人笔记系统。".

Extension Screenshots

screenshot
screenshot

Download pagenote一页一记 Extension CRX File

Download pagenote一页一记 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        1、文本高亮
高亮网页里的关键内容。支持多种颜色,可锚点定位。
2、网页笔记
一页一记:把笔记留在网页里,不用单独在记事本存储。下次打开笔记自动出现。
3、智能书签
根据标记智能创建、删除书签。还可为网页添加标签,方便管理、查找。
4、网页快照
对网页进行快照保存。刻下当前访问内容,网页内容变了也能查看历史记录。
5、导入导出
支持备份、还原,还可导出多种格式:JSON、Markdown
让好友一眼就知道你的分享重点。可区分仅分享标记或分享整个网页。
7、个人主页
拥有自己的私人网页管理主页。管理你自己的知识星球。
8、不要求登录,用户自己掌握数据,可离线运行                    

Extension Basic Information

Name pagenote一页一记 pagenote一页一记
ID hpekbddiphlmlfjebppjhemobaopekmp
Official URL https://chromewebstore.google.com/detail/pagenote%E4%B8%80%E9%A1%B5%E4%B8%80%E8%AE%B0/hpekbddiphlmlfjebppjhemobaopekmp
Description 在任意网页内,摘录重点、划线批注。打造个人笔记系统。
File Size 3.16 MB
Installation Count 10,292
Current Version 0.28.19
Last Updated 2024-01-31
Publish Date 2020-07-01
Rating 4.53/5 Total 62 Ratings
Developer https://pagenote.cn
Email [email protected]
Payment Type free
Extension Website https://pagenote.cn/
Help Page URL https://pagenote.cn/author
Privacy Policy Page URL https://pagenote.cn/privacy
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "version": "0.28.19",
    "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": [
        "downloads",
        "activeTab",
        "alarms",
        "*:\/\/*\/*",
        "storage",
        "contextMenus",
        "",
        "notifications",
        "unlimitedStorage"
    ],
    "optional_permissions": [
        "bookmarks"
    ],
    "browser_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": "\u6b64\u9875\u9762\u5c1a\u672a\u51c6\u5907\u5b8c\u6bd5\uff0c\u5237\u65b0\u9875\u9762\u6216\u5207\u6362\u81f3\u5176\u4ed6\u9875\u9762\u8bd5\u8bd5\uff1f",
        "default_popup": "\/web\/ext\/popup.html"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "\/web\/ext\/setting.html"
    },
    "homepage_url": "https:\/\/pagenote.cn?ext=chrome",
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_active_extension__",
            "suggested_key": {
                "default": "Alt+P"
            }
        },
        "capture": {
            "description": "__MSG_capture_tabview__",
            "suggested_key": {
                "default": "Alt+K"
            }
        },
        "enable_copy": {
            "description": "\u5141\u8bb8\u590d\u5236",
            "suggested_key": {
                "default": "Alt+C"
            }
        },
        "offline_html": {
            "description": "__MSG_offline_html__",
            "suggested_key": {
                "default": "Alt+D"
            }
        }
    },
    "background": {
        "scripts": [
            "rollup\/background.js"
        ],
        "persistent": true
    },
    "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"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/pagenote.cn; object-src 'self' https:\/\/logike.cn",
    "web_accessible_resources": [
        "rollup\/content_script.js",
        "images\/**",
        "lib\/**",
        "\/**"
    ]
}