BookMap

Significantly decreases the time it takes to save a bookmark to a desired folder.

BookMapคืออะไร?

BookMap เป็นส่วนขยายของ Chrome ที่พัฒนาโดย All-Mike Productions และคุณลักษณะหลักของมันคือ "Significantly decreases the time it takes to save a bookmark to a desired folder."

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

screenshot
screenshot

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

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

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

                        *Highly recommended you set up hotkeys before using.*

Open the console and begin typing a folder name. When your target folder is selected press tab or enter to add a bookmark to it.

There are also 4 hot-keys that you can assign to folders for instant bookmark creation.

FAQ

1) Why does this extension ask to use my history? - History is coupled with tab access in chrome. If you view the code you'll see there's no interaction with your history whatsoever.

2) Why only 4 hotkeys? - This is currently the max hotkeys allowed on a chrome extension. If there's demand, it's possible BookMap could be recreated as Chrome App to make more mapping available.

3) What's next? - After some UI improvement, BookMap will be getting pop-up notifications to provide additional feedback upon creating a bookmark.                    

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

ชื่อ BookMap BookMap
ID gdbkjigmeiednmbhllknejncmoklabne
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bookmap/gdbkjigmeiednmbhllknejncmoklabne
คำอธิบาย Significantly decreases the time it takes to save a bookmark to a desired folder.
ขนาดไฟล์ 258 KB
จำนวนการติดตั้ง 531
เวอร์ชันปัจจุบัน 1.234
อัปเดตครั้งล่าสุด 2018-03-29
วันที่เผยแพร่ 2018-03-29
คะแนน 4.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา All-Mike Productions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BookMap",
    "description": "Significantly decreases the time it takes to save a bookmark to a desired folder.",
    "version": "1.234",
    "author": "Michael Walker, www.github.com\/mdubbpro",
    "permissions": [
        "bookmarks",
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_title": "Book-Map",
        "default_icon": "icons\/android-icon-192x192.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "mapkey0": {
            "suggested_key": {
                "windows": "Alt+1",
                "default": "Alt+1"
            },
            "description": "Registered folder 0",
            "global": true
        },
        "mapkey1": {
            "suggested_key": {
                "windows": "Alt+2",
                "default": "Alt+2"
            },
            "description": "Registered folder 1",
            "global": true
        },
        "mapkey2": {
            "suggested_key": {
                "windows": "Alt+3",
                "default": "Alt+3"
            },
            "description": "Registered folder 2",
            "global": true
        },
        "mapkey3": {
            "suggested_key": {
                "windows": "Alt+4",
                "default": "Alt+4"
            },
            "description": "Registered folder 3",
            "global": true
        }
    },
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "32": "icons\/favicon-32x32.png",
        "96": "icons\/favicon-96x96.png",
        "144": "icons\/android-icon-144x144.png",
        "192": "icons\/android-icon-192x192.png"
    }
}