Fluid Bookmarks

Dropdown bookmarks bar with numerous options and customization.

Τι είναι το Fluid Bookmarks;

Το Fluid Bookmarks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον KFlunker, και η κύρια λειτουργία του είναι "Dropdown bookmarks bar with numerous options and customization.".

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

screenshot
screenshot
screenshot

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

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

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

                        Fluid Bookmarks adds a drop-down bookmarks bar to Google Chrome.

On install, hide your permanent bookmarks bar for the best experience.    
__________________________________
FEATURES: 

Bookmarks open in new tab on left click.

Right click allows:
        * Open in current tab
        * Open in new window
        * Open in incognito window
        * Edit bookmark
        * Move bookmark
        * Copy url
        * Delete bookmark

Bookmarks bar is fully customizable to meet all of your needs:
        * Change the background color
        * Change the text color
        * Change the border color
        * Change the bookmark hover color
        * Change the font size
        * Choose between bookmark names only, bookmark icons only, or both
        * Choose how long your mouse must stay in the address bar area for the 
          bookmarks bar to drop down.

Supported on both Windows and Mac!

Worried about installing?  Don't be!  Fluid Bookmarks will not affect your normal bookmarks bar.  Installing will not corrupt your bookmarks.  

Note: Bookmarks bar will not drop-down in the chrome web store or new tab pages. 

Let me know if you run into any issues; I'm more than happy to help.
__________________________________

If you enjoy this extension, please let others know about your experience!
Thank you for your support!  


---------
Version 1.0
Fluid Bookmarks replaced New Tab Bookmarks
---------                    

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

Όνομα Fluid Bookmarks Fluid Bookmarks
ID haandfikjmhahlpkhapifhkanmdaakop
Επίσημο URL https://chromewebstore.google.com/detail/fluid-bookmarks/haandfikjmhahlpkhapifhkanmdaakop
Περιγραφή Dropdown bookmarks bar with numerous options and customization.
Μέγεθος Αρχείου 111 KB
Αριθμός Εγκαταστάσεων 368
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2018-10-29
Ημερομηνία Δημοσίευσης 2018-10-29
Αξιολόγηση 3.24/5 Συνολικά 29 Αξιολογήσεις
Προγραμματιστής KFlunker
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fluid Bookmarks",
    "description": "Dropdown bookmarks bar with numerous options and customization.",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "thirdParty\/jquery.3.3.1.js",
                "src\/bg\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "bookmarksbar.html",
        "style.css"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "bookmarks"
    ]
}