Save Notes

Create notes and save important bullet points from an article

什么是Save Notes?

Save Notes是由Swati Kp开发的Chrome扩展程序,该扩展的主要功能是“Create notes and save important bullet points from an article”。

扩展截图

screenshot
screenshot
screenshot

下载Save Notes扩展crx文件

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

扩展使用说明

                        Increase your productivity.
A chrome extension that lets you save important points from any article on a website to text file.
You can create notes anytime, just select the text you want to save to a file,
You will see 2 buttons:
Add to file
Save File

Keep on adding the text to the file and at the end just choose save file option.

A file will be downloaded with all the bullet points you selected and added to file.

There is a toggle button as well to turn on or off the extension anytime                    

扩展基本信息

名称 Save Notes Save Notes
ID dhngchhcdfdmpbkekjpbophjdfccmlfc
官方URL https://chrome.google.com/webstore/detail/save-notes/dhngchhcdfdmpbkekjpbophjdfccmlfc
简介 Create notes and save important bullet points from an article
文件大小 262 KB
安装次数 161
当前版本 0.5
更新时间 2018-03-13
上架时间 2018-03-13
评分 4.00/5 共6次评分
开发者 Swati Kp
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Notes",
    "version": "0.5",
    "description": "Create notes and save important bullet points from an article",
    "background": {
        "page": "bg.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "on.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "downloads",
        "",
        "activeTab",
        "https:\/\/od-api.oxforddictionaries.com\/api\/v1\/entries\/en\/*"
    ]
}