Bettermark

A smarter 'Add Bookmark' button

Bettermarkคืออะไร?

Bettermark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A smarter 'Add Bookmark' button"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}