Bookmarks Menu

Chrome extension which shows bookmarks menu. Works with Chrome and Google bookmarks.

Bookmarks Menu란 무엇입니까?

Bookmarks Menu은(는) Supria Saha에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension which shows bookmarks menu. Works with Chrome and Google bookmarks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The extension shows bookmarks menu.

Usage:
1. To open bookmark in current tab click by left mouse button.
2. To open bookmark in new tab:
   - click by middle mouse button or click by left mouse button with Ctrl key pressed.
3. To open bookmark in new tab and switch to it click by middle mouse button with Shift key pressed.
4. To open bookmark in new window click by left mouse button with Shift key pressed.
5. To open all bookmarks in folder click by middle button on folder.
6. To display context menu click by right mouse button.

On options panel you can hide some bookmarks or folders. It might be useful if you use bookmark synchronization between different computers.

==================
Update: v2023.07.12 - Add feature to share bookmark links on social networks: Twitter, LinkedIn, Facebook and use facebook api to quickly post links to newsfeed.

How to use: In the options page, select the link or folder you want to display. Then click share button to share selected link.                    

확장 프로그램 기본 정보

이름 Bookmarks Menu Bookmarks Menu
ID ffmdedmghpoipeldijkdlcckdpempkdi
공식 URL https://chromewebstore.google.com/detail/bookmarks-menu/ffmdedmghpoipeldijkdlcckdpempkdi
설명 Chrome extension which shows bookmarks menu. Works with Chrome and Google bookmarks.
파일 크기 66.54 KB
설치 횟수 108,703
현재 버전 2023.07.25
최근 업데이트 2023-07-26
출시 날짜 2020-02-02
평점 3.95/5 총 1446 개의 평점
개발자 Supria Saha
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://sites.google.com/view/text-analysis-gg/home
지원되는 언어 de,en,fr,ca,es,ru,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bookmarks Menu",
    "version": "2023.07.25",
    "default_locale": "en",
    "description": "Chrome extension which shows bookmarks menu. Works with Chrome and Google bookmarks.",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/index.tsx-loader.41f96f98.js"
            ],
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/*.linkedin.com\/*"
            ],
            "css": [
                "assets\/index.e3b0c442.css"
            ]
        }
    ],
    "permissions": [
        "bookmarks",
        "favicon",
        "fontSettings",
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/*.linkedin.com\/*"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "assets\/img\/*"
            ],
            "use_dynamic_url": false
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/twitter.com\/*"
            ],
            "resources": [
                "assets\/index.tsx.db313a81.js"
            ],
            "use_dynamic_url": true
        }
    ]
}