context-note

This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…

什么是context-note?

context-note是由Jim Chan开发的Chrome扩展程序,该扩展的主要功能是“This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…”。

扩展截图

screenshot

下载context-note扩展crx文件

下载context-note扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to manage the websites link that are important. However, in some specific scenes such as reading an article or browsing some key information, we also need to mark down the specific sentence and its context. When reviewing these notes, we can simply jump back to that sentence rather than reading the whole page again, where this extension is to extract the text and location information of these notes.                    

扩展基本信息

名称 context-note context-note
ID enmeffcefbiehghanidhebgiccljmncl
官方URL https://chromewebstore.google.com/detail/context-note/enmeffcefbiehghanidhebgiccljmncl
简介 This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…
文件大小 533 KB
安装次数 1,177
当前版本 1.3.10
更新时间 2022-05-19
上架时间 2021-09-24
评分 4.75/5 共4次评分
开发者 Jim Chan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/betterRunner/context-note
帮助页面URL https://github.com/betterRunner/context-note/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "context-note",
    "version": "1.3.10",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "Context Note"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/main.js"
            ],
            "css": [
                "content-scripts\/main.css",
                "content-scripts\/main.44bddb14.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*"
            ]
        },
        {
            "resources": [
                "\/assets\/element-icons.9c88a535.woff",
                "\/assets\/element-icons.de5eb258.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "unlimitedStorage",
        "activeTab",
        "storage"
    ]
}