Bookmark+

Bookmark that doesn't suck.

Bookmark+ क्या है?

Bookmark+ Tianyu Liu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark that doesn't suck."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bookmark+ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/"
    ]
}