Shribed

Opens a new autosaving Shrib notepad tab, best when used with Session Buddy

Shribed란 무엇입니까?

Shribed은(는) DShah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens a new autosaving Shrib notepad tab, best when used with Session Buddy"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Shribed is the note taking extension you always wanted.

Take your notes and never loose them again. You can use it as an ordinary notepad that can:

Open a new note in a new tab
View/edit/share/collaborate on the same note
Keep a permanent note

But, it truly shines when used with the Session buddy extension. Retrieve your saved note using the SessionBuddy Extension or bookmarks.

Features:
Lightweight & Clean design
Uses Shrib.com 

Your text is autosaved to the cloud as you type it.
Can also use retrieve/edit the note at any time from any device through the same URL. 

Contact me (Dhwanil Shah)
This is my first extension. I had fun creating this and hope you have fun using it. Feel free to contact me with questions/requests/feedback you may have. You can also reach me through twitter.

My Twitter: @DhwanilRS

Notes
***DO NOT STORE CREDITCARD INFO/PASSWORDS/CONFIDENTIAL INFORMATION IN YOUR NOTES***
Updates in the pipeline. Many new features *Coming soon......

Change-log

Version 0.9.0 
New Features: Added permanent Notes

tldr: A simple extension I created to form a smooth experience using Shrib & SessionBuddy                    

확장 프로그램 기본 정보

이름 Shribed Shribed
ID ajbnlghnbhbhnmkpichpcaagjcpegckn
공식 URL https://chromewebstore.google.com/detail/shribed/ajbnlghnbhbhnmkpichpcaagjcpegckn
설명 Opens a new autosaving Shrib notepad tab, best when used with Session Buddy
파일 크기 19.18 KB
설치 횟수 59
현재 버전 0.9.0
최근 업데이트 2016-08-13
출시 날짜 2016-08-13
평점 5.00/5 총 1 개의 평점
개발자 DShah
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shribed",
    "description": "Opens a new autosaving Shrib notepad tab, best when used with Session Buddy",
    "version": "0.9.0",
    "short_name": "Shribed",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Open new Shrib notepad!"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/shrib.com\/*"
            ],
            "js": [
                "persistentNote.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ],
    "background": {
        "persistent": false,
        "page": "background.html"
    }
}