Outline: quick notes

An extension that let you save you quick notes while browsing

Outline: quick notes란 무엇입니까?

Outline: quick notes은(는) https://shubhamverma.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that let you save you quick notes while browsing"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Outline: quick notes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Outline help you to save quick notes while browsing on the internet.

The process for taking notes with outline is simple. You simply need to install the extension. And start adding whatever you like on the internet. This project I created for my personal use but later I realise it can be used by anyone. So here it is available for everyone.

Why Outline?
1. Privacy focused. The data can only read by you only. Its between you and your browser. Code is open sourced. So you can always look whats going. No one can recover your info. If it's gone, it's gone
2. Rich text formatting allowed. You can highlight according to your convenience.
3. Less clutter info: Not everything you read should be in your notes. Sometimes you just need some pointer which you can review later. You can think outline as quick draft which you can save  all your info anywhere you want
4. Easy to find whatever you type

Note: This extension rely chrome storage api. So it has its own limitation. If you do not need any specific notes, delete it. So that it does not give your storage warning. More you can read here: https://developer.chrome.com/docs/extensions/reference/storage/#property-local

And much more feature will come soon...

If you want new feature request or found any bug. Feel free to open ticket here: https://github.com/shubhamV123/outline                    

확장 프로그램 기본 정보

이름 Outline: quick notes Outline: quick notes
ID jnjimmfigcmfgpnkejeegliidonlefdf
공식 URL https://chromewebstore.google.com/detail/outline-quick-notes/jnjimmfigcmfgpnkejeegliidonlefdf
설명 An extension that let you save you quick notes while browsing
파일 크기 235 KB
설치 횟수 181
현재 버전 1.1.0
최근 업데이트 2022-03-22
출시 날짜 2022-03-20
평점 5.00/5 총 4 개의 평점
개발자 https://shubhamverma.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/shubhamV123/outline
도움말 페이지 URL https://github.com/shubhamV123/outline
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outline: quick notes",
    "description": "An extension that let you save you quick notes while browsing",
    "version": "1.1.0",
    "manifest_version": 3,
    "action": {
        "default_title": "Click me",
        "default_popup": "index.html"
    },
    "icons": {
        "48": "chrome_icons\/Outline64.png",
        "128": "chrome_icons\/Outline128.png",
        "192": "chrome_icons\/Outline192.png",
        "256": "chrome_icons\/Outline256.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    }
}