Bettermark

A smarter 'Add Bookmark' button

Bettermarkとは何ですか?

BettermarkはUnknownによって開発されたChromeの拡張機能で、その主な機能は「A smarter 'Add Bookmark' button」です。

拡張機能のスクリーンショット

screenshot

Bettermark拡張機能のCRXファイルをダウンロード

Bettermark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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