Save Notes

Create notes and save important bullet points from an article

Save Notes란 무엇입니까?

Save Notes은(는) Swati Kp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create notes and save important bullet points from an article"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Save Notes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Save Notes Save Notes
ID dhngchhcdfdmpbkekjpbophjdfccmlfc
공식 URL https://chrome.google.com/webstore/detail/save-notes/dhngchhcdfdmpbkekjpbophjdfccmlfc
설명 Create notes and save important bullet points from an article
파일 크기 262 KB
설치 횟수 161
현재 버전 0.5
최근 업데이트 2018-03-13
출시 날짜 2018-03-13
평점 4.00/5 총 6 개의 평점
개발자 Swati Kp
이메일 [email protected]
결제 유형 free
지원되는 언어 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\/*"
    ]
}