Bettermark

A smarter 'Add Bookmark' button

Bettermark란 무엇입니까?

Bettermark은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A smarter 'Add Bookmark' button"입니다.

확장 프로그램 스크린샷

screenshot

Bettermark 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}