Fluid Bookmarks

Dropdown bookmarks bar with numerous options and customization.

Fluid Bookmarks란 무엇입니까?

Fluid Bookmarks은(는) KFlunker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dropdown bookmarks bar with numerous options and customization."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fluid Bookmarks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}