Sidecar Bookmarks Sidebar

A simple bookmark sidebar that stays open while your browse

Sidecar Bookmarks Sidebar là gì?

Sidecar Bookmarks Sidebar là một tiện ích mở rộng Chrome được phát triển bởi Goodlab, và tính năng chính của nó là "A simple bookmark sidebar that stays open while your browse".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sidecar Bookmarks Sidebar

Tải xuống các tệp mở rộng Sidecar Bookmarks Sidebar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Updated January 26th 2015 - See notes below

Finally! A sidebar that shows your Chrome bookmarks while you browse. Do you miss the Firefox bookmark sidebar? Well this is the extension for you. 

FEATURES
- Tree view opens and collapses at your request. 
- Search your bookmarks in the sidebar.
- Choose wether you want Sidecar to stay open or open on demand
- Add the page your on as bookmark to any folder in Sidecar 
- Open and close the sidebar with button on browser toolbar
- Open and close with key command (See below how to open Sidecar for settings)

HOW SIDECAR WORKS
Why does Sidecar open on top of the page instead of pushing it over to the right like Firefox?
Sidebar bookmark in Firefox are part of the actual browser. Therefore it has special allowances. Chrome extensions don't have the allowances. Yes, we could make Sidecar push the content to the right instead of overlay. However, we have tested this extensively and it has proven problematic and in many cases, broken the layout of websites. Most user have told us that since Sidecar has easy ways to open/close it (see below) quickly that it is ok that it opens on top of the page. They just open/close when needed - usually with key command.

HOW TO OPEN SIDECAR
1. Click the browser tool bar button
2. Click the little tab you see on the left side of your browser
3. Setup a custom key command. Here is how: While in Chrome choose the "Window" menu then "Extensions". Scroll to the very bottom of the Extensions list. Click "Keyboard Shortcuts". Find Sidecar in the list and enter your a keyboard shortcut of your choice. Now Sidecar will open/close anytime you like. 

UPDATED JAN 26th 2015
- Based on feedback, we've made the little tab on the left side of the browser optional. See settings panel for on/off switch. Also fixed a bunch of other bugs.  

UPDATED JAN 13th 2015
- Added a small tab that hangs off the left side of the browser frame. Clicking the tab makes it really easy to open Sidecar. 

UPDATED DEC 11th 2014
- Added optional "Always Open" or "Open on Demand" feature
- You can now add bookmarks to folders right inside Sidecar. Click a little plus button next to each folder in Sidecar, it will add the current web page to that bookmark folder. Really quick way to bookmark pages. Faster then the Firefox drag and drop method - we think, let u snow what you think
-Added a close and settings button to the bottom of sidecar                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sidecar Bookmarks Sidebar Sidecar Bookmarks Sidebar
ID lbnegejhdjianfmbancpeflnkbfollfi
URL Chính Thức https://chromewebstore.google.com/detail/sidecar-bookmarks-sidebar/lbnegejhdjianfmbancpeflnkbfollfi
Mô tả A simple bookmark sidebar that stays open while your browse
Kích Thước Tệp 118 KB
Số Lần Cài Đặt 167
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2015-02-01
Ngày Phát Hành 2015-02-01
Đánh Giá 2.75/5 Tổng số 28 Đánh Giá
Nhà Phát Triển Goodlab
Loại Thanh Toán free
URL Trang Trợ Giúp https://groups.google.com/forum/#!forum/sidecar-bookmark-sidebar---chrome-extension-support-group
Ngôn Ngữ Được Hỗ Trợ de,en,fr,nl,tr,es,hr,it,hu,pl,pt-BR,pt-PT,cs,ru,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sidecar Bookmarks Sidebar",
    "description": "A simple bookmark sidebar that stays open while your browse",
    "manifest_version": 2,
    "version": "1.0.6",
    "icons": {
        "16": "\/img\/icon16.png",
        "48": "\/img\/icon48.png",
        "128": "\/img\/icon128.png"
    },
    "browser_action": {
        "default_icon": "\/img\/icon128.png"
    },
    "permissions": [
        "",
        "chrome:\/\/favicon\/",
        "bookmarks",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "\/js\/eventPage.js"
        ]
    },
    "options_page": "\/html\/options.html",
    "content_scripts": [
        {
            "css": [
                "\/css\/styles.css"
            ],
            "js": [
                "\/js\/vendor\/jquery.min.js",
                "\/js\/vendor\/classie.js",
                "\/js\/main.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+B",
                "mac": "Command+Shift+B",
                "chromeos": "Ctrl+Shift+B",
                "linux": "Ctrl+Shift+B"
            },
            "global": true
        }
    },
    "minimum_chrome_version": "9",
    "default_locale": "en",
    "web_accessible_resources": [
        "*.*"
    ]
}