Save Notes

Create notes and save important bullet points from an article

Wat is Save Notes?

Save Notes is een Chrome-extensie ontwikkeld door Swati Kp, en de belangrijkste functie is "Create notes and save important bullet points from an article".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Save Notes

Download Save Notes-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Save Notes Save Notes
ID dhngchhcdfdmpbkekjpbophjdfccmlfc
Officiële URL https://chrome.google.com/webstore/detail/save-notes/dhngchhcdfdmpbkekjpbophjdfccmlfc
Beschrijving Create notes and save important bullet points from an article
Bestandsgrootte 262 KB
Aantal Installaties 161
Huidige Versie 0.5
Laatst Bijgewerkt 2018-03-13
Publicatiedatum 2018-03-13
Beoordeling 4.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Swati Kp
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}