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
官方網址 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\/*"
    ]
}