Bookmark Walker

Hotkey-based browsing of bookmarks, in forward or reverse order

Bookmark Walker क्या है?

Bookmark Walker Tyler Durrett द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hotkey-based browsing of bookmarks, in forward or reverse order"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bookmark Walker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        What
----
A simple Google Chrome extension which creates shortcut keys for stepping through bookmarks from the folder of your choice in forward or reverse order.

Why
---
I save a lot of bookmarks while browsing the web, but I find it overly tedious to click through my various bookmark folders to revisit my saved sites. I wanted the ability to pick a particular folder, and then press a hotkey to step through each bookmark without hassle.

How
---

- Click the extension's icon to choose a bookmarks folder to step through.

- Press Alt+M to browse forward through the bookmarks in your chosen folder. Successive presses will step through each bookmark in the folder, displaying them in the current tab.

- Alt+N cycles through the bookmarks in the opposite order.                    

एक्सटेंशन की मूल जानकारी

नाम Bookmark Walker Bookmark Walker
ID jolkcmlidbppgpplmcmpkdhlefemacfd
आधिकारिक URL https://chromewebstore.google.com/detail/bookmark-walker/jolkcmlidbppgpplmcmpkdhlefemacfd
विवरण Hotkey-based browsing of bookmarks, in forward or reverse order
फ़ाइल का आकार 153 KB
स्थापना संख्या 121
वर्तमान संस्करण 1.4.3
अंतिम अपडेट 2013-10-12
प्रकाशन तिथि 2013-10-12
रेटिंग 4.43/5 कुल 7 रेटिंग्स
डेवलपर Tyler Durrett
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/tylerdurrett/chrome-bookmark-walker
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark Walker",
    "short_name": "BookmarkWalk",
    "description": "Hotkey-based browsing of bookmarks, in forward or reverse order",
    "version": "1.4.3",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "25",
    "permissions": [
        "tabs",
        "bookmarks"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Bookmark Walker",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "load-previous-bookmark": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Load the previous bookmark in the current folder"
        },
        "load-next-bookmark": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Load the next bookmark in the current folder"
        }
    }
}