Save Notes

Create notes and save important bullet points from an article

Save Notes là gì?

Save Notes là một tiện ích mở rộng Chrome được phát triển bởi Swati Kp, và tính năng chính của nó là "Create notes and save important bullet points from an article".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Save Notes

Tải xuống các tệp mở rộng Save Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Save Notes Save Notes
ID dhngchhcdfdmpbkekjpbophjdfccmlfc
URL Chính Thức https://chrome.google.com/webstore/detail/save-notes/dhngchhcdfdmpbkekjpbophjdfccmlfc
Mô tả Create notes and save important bullet points from an article
Kích Thước Tệp 262 KB
Số Lần Cài Đặt 161
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2018-03-13
Ngày Phát Hành 2018-03-13
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Swati Kp
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}