pagenote一页一记

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

¿Qué es pagenote一页一记?

pagenote一页一记 es una extensión de Chrome desarrollada por https://pagenote.cn, y su función principal es "在任意网页内,摘录重点、划线批注。打造个人笔记系统。".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión pagenote一页一记

Descarga archivos de extensión pagenote一页一记 en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre pagenote一页一记 pagenote一页一记
ID hpekbddiphlmlfjebppjhemobaopekmp
URL Oficial https://chromewebstore.google.com/detail/pagenote%E4%B8%80%E9%A1%B5%E4%B8%80%E8%AE%B0/hpekbddiphlmlfjebppjhemobaopekmp
Descripción 在任意网页内,摘录重点、划线批注。打造个人笔记系统。
Tamaño del Archivo 3.16 MB
Cantidad de Instalaciones 10,292
Versión Actual 0.28.19
Última Actualización 2024-01-31
Fecha de Publicación 2020-07-01
Calificación 4.53/5 Total de 62 Calificaciones
Desarrollador https://pagenote.cn
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://pagenote.cn/
URL de la Página de Ayuda https://pagenote.cn/author
URL de la Página de Política de Privacidad https://pagenote.cn/privacy
Idiomas Soportados 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\/**",
        "\/**"
    ]
}