Save Notes

Create notes and save important bullet points from an article

Co je Save Notes?

Save Notes je rozšíření Chrome vyvinuté Swati Kp, a jeho hlavní funkcí je „Create notes and save important bullet points from an article“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Save Notes

Stáhněte si soubory rozšíření Save Notes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Save Notes Save Notes
ID dhngchhcdfdmpbkekjpbophjdfccmlfc
Oficiální URL https://chrome.google.com/webstore/detail/save-notes/dhngchhcdfdmpbkekjpbophjdfccmlfc
Popis Create notes and save important bullet points from an article
Velikost souboru 262 KB
Počet instalací 161
Aktuální Verze 0.5
Poslední Aktualizace 2018-03-13
Datum Vydání 2018-03-13
Hodnocení 4.00/5 Celkem 6 Hodnocení
Vývojář Swati Kp
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
    ]
}