Bookmarks Tagger

Assign tags to your bookmarks and search for them through the address bar.

Bookmarks Taggerคืออะไร?

Bookmarks Tagger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michal Fabry และคุณลักษณะหลักของมันคือ "Assign tags to your bookmarks and search for them through the address bar."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Bookmarks Tagger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Bookmarks are one of the vital parts of every browser. However, they are only useful if they are organized in a way that makes it easy to find them again.

This extension allows you to:
- assign tags to your bookmarks
- search for the bookmarks in the address bar using the letters "bt" (bookmark tagger) and the tag(s) in the same way as you use the quick search
- import your existing bookmarks and tag them
- edit, remove bookmarks and tags
- browse your bookmarks by their tags

You can assign a keyboard shortcut for adding a new bookmark (e.g. Ctrl + D):
- go to chrome://extensions
- on the bottom of the page, click on "Configure commands" link
- assign the keyboard shortcut for "Bookmarks Tagger" extension

Bookmarks Tagger has been released under the license GNU GPLv3. Source code is available on https://github.com/furbos/bookmarks-tagger

=========
Changelog
=========
1.1.2
- Remove obsolete IndexedDB.setVersion()
- Cleanup media files

1.1.1
- Fixed problem with creating stores for new users

1.1
- Fixed problem with saving bookmarks in older versions of Chrome/Chromium (v20 and earlier)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bookmarks Tagger Bookmarks Tagger
ID dpiecafonfminhngabegejbligdagjfc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bookmarks-tagger/dpiecafonfminhngabegejbligdagjfc
คำอธิบาย Assign tags to your bookmarks and search for them through the address bar.
ขนาดไฟล์ 46.82 KB
จำนวนการติดตั้ง 4,298
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2013-04-05
วันที่เผยแพร่ 2013-04-05
คะแนน 3.21/5 รวมทั้งหมด 52 คะแนน
ผู้พัฒนา Michal Fabry
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/furbos/bookmarks-tagger
URL หน้าช่วยเหลือ https://github.com/furbos/bookmarks-tagger/issues
ภาษาที่รองรับ en
manifest.json
{
    "browser_action": {
        "default_icon": "media\/icon19.png",
        "default_popup": "popup.html",
        "default_title": "Bookmarks Tagger"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Assign tags to your bookmarks and search for them through the address bar.",
    "background": {
        "scripts": [
            "global.js",
            "background.js"
        ]
    },
    "name": "Bookmarks Tagger",
    "options_page": "options.html",
    "permissions": [
        "bookmarks",
        "tabs"
    ],
    "omnibox": {
        "keyword": "bt"
    },
    "icons": {
        "48": "media\/icon48.png",
        "96": "media\/icon96.png",
        "112": "media\/icon112.png",
        "16": "media\/icon16-on.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "version": "1.1.2"
}