Shribed

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

Shribedคืออะไร?

Shribed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DShah และคุณลักษณะหลักของมันคือ "Opens a new autosaving Shrib notepad tab, best when used with Session Buddy"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shribed

ดาวน์โหลดไฟล์ส่วนขยาย Shribed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}