Bookmark Tab

Replace standard New Tab. Each bookmark folder is a button. Click a button to open a window with links.

Co to jest Bookmark Tab?

Bookmark Tab to rozszerzenie Chrome opracowane przez inget, a jego główną funkcją jest „Replace standard New Tab. Each bookmark folder is a button. Click a button to open a window with links.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Bookmark Tab

Pobierz pliki rozszerzeń Bookmark Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        I like "Speed Dial" plugins for browsers, but there is always something I don't like about the ones I find.  So, I decided to make my own.  

The "Other Bookmarks" folder, along with all of its subfolders, are shown as buttons at the top of the browser.  

* Click a button to display a modal window with all of the bookmarks in that folder. 
* Click a link to visit that site. 
* Click anywhere outside the modal to close it. 


This extension only requires three permissions (the bare minimum permissions to get the job done).  
1. It needs Bookmarks permission, to do its job. 
2. It needs the Active Tab permission, so it can function as a tab. 
3. It needs the chrome://favicons/ permission, to display bookmark icons. 


Notes: 
- Chrome will already sync your bookmarks between multiple computers using your Google account, so there's nothing added here for that. 
- The root folder it looks at is Other Bookmarks, so any bookmark you want displayed needs to be in there, either directly inside the Other bookmarks folder, or else inside another folder that is inside Other Bookmarks.  
- The Other Bookmarks folder button is shown first.  All other folder buttons are displayed in alphabetical order.  
- Folders two or more levels deep are shown as "parent / child / child..."
- Since the bookmarks bar is already a thing, this extension doesn't display bookmarks placed in that folder. 
- Still pretty lightweight.  The only libraries used are jQuery and underscore for code, and W3.css for all styling. 

New in 2.0: 
- Major overhaul of the UI.  Instead of displaying all bookmarks in bordered boxes and having the buttons jump to the corresponding box, we now only display buttons, with each button displaying a modal with the bookmarks contained in that folder. 
- Rewrite of the bookmark parsing code. 
- Updated jQuery version to 2.2.4. 
- Included underscore.js for some utility functions. 
- Brought in some more ES6 syntax. 
- Organized code into separate files. 
- After trying several different CSS frameworks, stumbled upon W3.css.  Huge props to W3Schools for that.  


New in 1.9: 
- Added buttons at the top to jump to the corresponding bookmark folder on the page.  
- The title of each folder is also now a link to the top of the page. 


New in 1.8:
- Removed bootstrap since it was no longer necessary. 
- The hierarchy of a folder is now displayed in the header (ie The header will be "Videos / Shows" if the "Shows" folder is a subfolder of the "Videos" folder). 
- Sorting now ignores the articles "A", "An" and "The."
- Subfolder names no longer have to be unique. 
- Started using some ES6 language features. 


New in 1.7: 
- Changed folder resizing to CSS instead of javascript.  Now folders all folders in a row will be the size of the largest folder in that row, instead of the largest folder in the bookmark collection. 


New in 1.5:
- Made each bookmark only one line, with long ones ending in "..."
- Added favicon support.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bookmark Tab Bookmark Tab
ID kcidlgmjegkmkdnjllmojgokbbjnbnlj
Oficjalny URL https://chromewebstore.google.com/detail/bookmark-tab/kcidlgmjegkmkdnjllmojgokbbjnbnlj
Opis Replace standard New Tab. Each bookmark folder is a button. Click a button to open a window with links.
Rozmiar pliku 50.81 KB
Liczba instalacji 134
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2016-10-01
Data Publikacji 2016-10-01
Ocena 3.60/5 Łącznie 5 Oceny
Deweloper inget
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bookmark Tab",
    "description": "Replace standard New Tab. Each bookmark folder is a button. Click a button to open a window with links.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "version": "2.0",
    "chrome_url_overrides": {
        "newtab": "newTab.html"
    },
    "permissions": [
        "activeTab",
        "bookmarks",
        "chrome:\/\/favicon\/"
    ]
}