Booklight

Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: control/ctrl+b

Τι είναι το Booklight;

Το Booklight είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ahmad.a.assaf, και η κύρια λειτουργία του είναι "Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: control/ctrl+b".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης Booklight

Λήψη αρχείων επέκτασης Booklight σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        I got fed up wasting my time trying to navigate my way through bunch of bookmarks folder to arrange them. So if you are:

- Obsessed with organization
- Have a couple hundreds (or thousands) of folders in your bookmarks
- You like to keep things tidy and every page has to be in its "perfect" place

then you came to the right place. Booklight is a clean Chrome Extension to ease the way of adding a bookmark.

To Launch press (ctrl/Control + b) and thats it

Features

- Filter bookmarks based on manual entry
- Show the path of the current selected folder
- Navigate easily through the folders tree using keyboard
    - if the folder is highlighted in blue this means that it contains sub-folders as well. The right arrow (->) keyboard key will go inside that folder. You can go back one step to the back using the left keyboard arrow (<-)
- Bookmark directly when you find your target
- The ability to switch to urls search **NEW**
- Launching urls in current or new tab **NEW**
- Fuzzy search enabled for filtering on both folders and urls **NEW**
- Clean current URL before bookmarking (sometimes the url is polluted with query strings e.g `?source= ...` for various tracking information). To clean the url from those, hit `ctrl+alt+x` and this will solve this issue.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Booklight Booklight
ID lkdhojpobehkcldjmileiancjjpdeakk
Επίσημο URL https://chrome.google.com/webstore/detail/booklight/lkdhojpobehkcldjmileiancjjpdeakk
Περιγραφή Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: control/ctrl+b
Μέγεθος Αρχείου 271 KB
Αριθμός Εγκαταστάσεων 66
Τρέχουσα Έκδοση 2.2.2
Τελευταία Ενημέρωση 2015-11-16
Ημερομηνία Δημοσίευσης 2015-11-16
Αξιολόγηση 2.92/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής ahmad.a.assaf
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://github.com/ahmadassaf/booklight
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Booklight",
    "description": "Easily add bookmarks to any category. Includes spotlight-like search with mouse\/keyboard support. Default key: control\/ctrl+b",
    "version": "2.2.2",
    "author": "Ahmad Assaf",
    "homepage_url": "https:\/\/github.com\/ahmadassaf\/booklight",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icons\/booklight-16.png",
        "48": "icons\/booklight-48.png",
        "128": "icons\/booklight-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/booklight-16.png",
            "38": "icons\/booklight-16.png"
        },
        "default_title": "Booklight"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/booklight.css",
                "css\/fontello.css"
            ],
            "js": [
                "lib\/jquery.js",
                "lib\/fuse.js",
                "lib\/keyboard.js",
                "helper.js",
                "booklight.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "css\/booklight.css",
        "css\/fontello.css",
        "lib\/keymaster.js",
        "font\/fontello.eot",
        "font\/fontello.svg",
        "font\/fontello.ttf",
        "font\/fontello.woff"
    ],
    "permissions": [
        "bookmarks",
        "tabs",
        "storage",
        "unlimitedStorage",
        "http:\/\/fonts.gstatic.com\/",
        "https:\/\/fonts.gstatic.com\/"
    ]
}