pagenote一页一记

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

pagenote一页一记 là gì?

pagenote一页一记 là một tiện ích mở rộng Chrome được phát triển bởi https://pagenote.cn, và tính năng chính của nó là "在任意网页内,摘录重点、划线批注。打造个人笔记系统。".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng pagenote一页一记

Tải xuống các tệp mở rộng pagenote一页一记 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên pagenote一页一记 pagenote一页一记
ID hpekbddiphlmlfjebppjhemobaopekmp
URL Chính Thức https://chromewebstore.google.com/detail/pagenote%E4%B8%80%E9%A1%B5%E4%B8%80%E8%AE%B0/hpekbddiphlmlfjebppjhemobaopekmp
Mô tả 在任意网页内,摘录重点、划线批注。打造个人笔记系统。
Kích Thước Tệp 3.16 MB
Số Lần Cài Đặt 10,292
Phiên Bản Hiện Tại 0.28.19
Cập Nhật Lần Cuối 2024-01-31
Ngày Phát Hành 2020-07-01
Đánh Giá 4.53/5 Tổng số 62 Đánh Giá
Nhà Phát Triển https://pagenote.cn
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://pagenote.cn/
URL Trang Trợ Giúp https://pagenote.cn/author
URL Trang Chính Sách Bảo Mật https://pagenote.cn/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/**",
        "\/**"
    ]
}