Bookee - Instant Bookmark Manager

Browse, search and share your Bookmarks with screenshots and thumbnails!

Bookee - Instant Bookmark Manager란 무엇입니까?

Bookee - Instant Bookmark Manager은(는) https://olivernassar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse, search and share your Bookmarks with screenshots and thumbnails!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Bookee - Instant Bookmark Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ---

Here are a few things that Bookee does to make your life easier:
- ⚡️ Loads instantly on any tab as you browse
- 🔎 Shows better search results
- 🏞 Shows you a thumbnail of each bookmark
- ⌨️ Adds shortcut keys (like "Command + e" to edit a bookmark)
- 🍿 Let's you watch any YouTube bookmarked videos right away
- 🤝 Share your bookmarks and folders with your team (coming soon)
- 🔗 Add collections of links for quick access (coming soon)

We all use our Bookmarks and Bookmarks Tab. But it can get super-busy: too many bookmarks, and losing track of what we've bookmarked.

Bookee was designed to access and search through your bookmarks instantly: just press the "Command + Shift + k" shortcut, and Bookee will pop right up.

Start typing to instantly search through your bookmarks, and then press the Enter key to open that bookmark in a new tab.

Here's what Bookee will *not* do:
- 🚫 It will *not* share your data with any third party sites
- 🚫 It will *not* export your bookmarks to any servers
- 🚫 It will *not* be a closed system. We will be open sourcing it soon 🙂                    

확장 프로그램 기본 정보

이름 Bookee - Instant Bookmark Manager Bookee - Instant Bookmark Manager
ID akoaofleglimjejcdodgocaicfjbmhkc
공식 URL https://chromewebstore.google.com/detail/bookee-instant-bookmark-m/akoaofleglimjejcdodgocaicfjbmhkc
설명 Browse, search and share your Bookmarks with screenshots and thumbnails!
파일 크기 1.03 MB
설치 횟수 697
현재 버전 1.1.23
최근 업데이트 2024-01-23
출시 날짜 2022-01-05
평점 4.27/5 총 11 개의 평점
개발자 https://olivernassar.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://onassar.github.io/extensions/bookee/
개인정보 보호 정책 페이지 URL https://onassar.github.io/extensions/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookee - Instant Bookmark Manager",
    "short_name": "bookee",
    "description": "Browse, search and share your Bookmarks with screenshots and thumbnails!",
    "homepage_url": "https:\/\/onassar.github.io\/extensions\/bookee\/",
    "version": "1.1.23",
    "author": "Oliver Nassar",
    "manifest_version": 3,
    "background": {
        "service_worker": "\/js\/runtime\/background.js"
    },
    "commands": {
        "toggle-bookee-command": {
            "suggested_key": {
                "chromeos": "Ctrl+Shift+K",
                "default": "Ctrl+Shift+K",
                "linux": "Ctrl+Shift+K",
                "mac": "Command+Shift+K",
                "windows": "Ctrl+Shift+K"
            },
            "description": "Toggle Bookee"
        }
    },
    "action": {
        "default_title": "Search Bookmarks"
    },
    "permissions": [
        "activeTab",
        "bookmarks",
        "notifications",
        "scripting",
        "storage",
        "tabs"
    ],
    "optional_permissions": [],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "\/vendors\/internal\/DependencyLoader.js",
                "\/vendors\/external\/extend\/v0.0.0\/extend.js",
                "\/js\/helpers\/Frame.js",
                "\/js\/states\/BookeeContent.js",
                "\/js\/runtime\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/logos\/bookee\/roles\/prod\/square-16x16.png",
        "48": "images\/logos\/bookee\/roles\/prod\/square-48x48.png",
        "128": "images\/logos\/bookee\/roles\/prod\/square-128x128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/app.html",
                "\/css\/*",
                "\/data\/*",
                "\/fonts\/*",
                "\/images\/*",
                "\/templates\/*",
                "\/vendors\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": []
}