Save Notes

Create notes and save important bullet points from an article

Apa itu Save Notes?

Save Notes adalah ekstensi Chrome yang dikembangkan oleh Swati Kp, dan fitur utamanya adalah "Create notes and save important bullet points from an article".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Save Notes

Unduh file ekstensi Save Notes dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Save Notes Save Notes
ID dhngchhcdfdmpbkekjpbophjdfccmlfc
URL Resmi https://chrome.google.com/webstore/detail/save-notes/dhngchhcdfdmpbkekjpbophjdfccmlfc
Deskripsi Create notes and save important bullet points from an article
Ukuran File 262 KB
Jumlah Instalasi 161
Versi Saat Ini 0.5
Terakhir Diperbarui 2018-03-13
Tanggal Publikasi 2018-03-13
Penilaian 4.00/5 Total 6 Penilaian
Pengembang Swati Kp
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
    ]
}