Save Notes

Create notes and save important bullet points from an article

What is Save Notes?

Save Notes is a Chrome extension developed by Swati Kp, and its main feature is "Create notes and save important bullet points from an article".

Extension Screenshots

screenshot
screenshot
screenshot

Download Save Notes Extension CRX File

Download Save Notes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Save Notes Save Notes
ID dhngchhcdfdmpbkekjpbophjdfccmlfc
Official URL https://chrome.google.com/webstore/detail/save-notes/dhngchhcdfdmpbkekjpbophjdfccmlfc
Description Create notes and save important bullet points from an article
File Size 262 KB
Installation Count 161
Current Version 0.5
Last Updated 2018-03-13
Publish Date 2018-03-13
Rating 4.00/5 Total 6 Ratings
Developer Swati Kp
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}