Bookmark+

Bookmark that doesn't suck.

Bookmark+คืออะไร?

Bookmark+ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tianyu Liu และคุณลักษณะหลักของมันคือ "Bookmark that doesn't suck."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Bookmark+ is a bookmark chrome extension that doesn't suck. 

Bookmark exactly what you want with one click! Bookmarked content will appear as they should, no more boring URL.

Just right click on the content you want to save on the page, bookmark+ will do the rest. Currently, bookmark plus spports:

Image: right click an image. Image will be directly visible from bookmark+ folder

Quote: select a paragraph and then right click. Selected paragraph will be directly visible from bookmark+ folder

Video: (Youtube only) right click on any blank space for a youtube video. Video will be directly visible from folder

Page: right click on any page, the url will be saved the old way.

Credits

Axel Wyart, for his great design of the extension's bookmark icon. Check out Axel's profile here: axelwyart.com

David Yao, for his awesome code contribution to the repo. Check out David's profile here: linkedin.com/pub/xinwei-david-yao/79/37a/912

Contact Me:
Follow me on twitter if you like the extension :)
@tianyuliuchn                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bookmark+ Bookmark+
ID ojpflkikgnodcgnbgnnlkadjfphjkffo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/bookmark+/ojpflkikgnodcgnbgnnlkadjfphjkffo
คำอธิบาย Bookmark that doesn't suck.
ขนาดไฟล์ 299 KB
จำนวนการติดตั้ง 205
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2014-07-12
วันที่เผยแพร่ 2014-07-12
คะแนน 3.71/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Tianyu Liu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmark+",
    "description": "Bookmark that doesn't suck.",
    "version": "0.1",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": {
            "19": "img\/ext-icon-19.png",
            "38": "img\/ext-icon-38.png"
        },
        "default_title": "My bookmarks"
    },
    "icons": {
        "16": "img\/ext-icon-16.png",
        "48": "img\/ext-icon-48.png",
        "128": "img\/ext-icon-128.png"
    },
    "background": {
        "scripts": [
            "menu.js",
            "lib\/sha1.js",
            "lib\/jquery.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "notifications",
        "https:\/\/quiet-headland-7786.herokuapp.com\/"
    ]
}