Bettermark

A smarter 'Add Bookmark' button

Bettermark क्या है?

Bettermark Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A smarter 'Add Bookmark' button"।

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

screenshot

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

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

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

                        A better 'Add Bookmark' button.  When you press the Bettermark button, the extension will attempt to add the bookmark in the correct folder in your "Other bookmarks" folder. It does this by examining existing folder names and the content of previously bookmarked sites in those folders and comparing them to the page to be saved. The implementation uses some simple heuristics along with a naive bayes classifier to try to categorize the page. If no match can be found, the bookmark is added to a folder called "Uncategorized".  The extension also provides the following convenience features:

A button to add bookmark to the last folder used.
Easily create a new folder and place the bookmark in the folder.

Permissions:
This extension will need access to the tabs to look at the current page, local storage (to cache the classifier) , and the bookmark api (to examine existing folders when categorizing).

Icon from the humano2 iconset available here https://www.iconfinder.com/iconsets/humano2#readme

Source code can be found here: https://github.com/jeffmax/bettermark                    

एक्सटेंशन की मूल जानकारी

नाम Bettermark Bettermark
ID okaigfigfiaojfemmlknfkjjknbfmhkc
आधिकारिक URL https://chromewebstore.google.com/detail/bettermark/okaigfigfiaojfemmlknfkjjknbfmhkc
विवरण A smarter 'Add Bookmark' button
फ़ाइल का आकार 197 KB
स्थापना संख्या 62
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2013-08-25
प्रकाशन तिथि 2013-08-25
रेटिंग 2.60/5 कुल 5 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://jeffmax.io
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bettermark",
    "version": "0.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "A smarter 'Add Bookmark' button",
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "bookmarks",
        "storage"
    ],
    "background": {
        "scripts": [
            "naivebayes.nodep.min.js",
            "eventPage.js"
        ],
        "persistent": false
    }
}