Team Bookmarks

Bookmark extension for you & your team.

Team Bookmarks란 무엇입니까?

Team Bookmarks은(는) Robert Ehni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark extension for you & your team."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Tired of manually sharing your bookmarks across the team? Put your team bookmarks in a single space easily accessible and centrally managed with this bookmark extension.

Features
- Export or import bookmarks from JSON
- Load bookmarks from online source
- Add, edit and delete bookmarks & categories
- Search bookmarks
- Open search by typing any key when extension is open
- Type "bm" in search bar to directly search bookmarks from the chrome search bar
- Open bookmarks in current or new tab
- Open the extension with shortcut:
  - default: CTRL+SHIFT+E
  - mac: CMD+SHIFT+E

Info: If the shortcut does not work open Extensions -> Shortcuts and reassign the shortcut to open the extension (or assign any shortcut you like).

Changelog v0.2.7
- Bugfix due to dependency update
Changelog v0.2.6
- Skipped release
Changelog v0.2.5
- Don't export category "Recently"
- Updated some dependencies
- Small code cleanups
Changelog v0.2.4
- Added firefox compatibility
Changelog v0.2.3
- Bugfix: Use chrome storage to export bookmarks instead of local storage
Changelog v0.2.2
- Use chrome storage API instead of local storage
- Settings Dialog: Show error message when reloading bookmark fails
- Cleanup code: remove comments and unused code
Changelog v0.2.1
- Omnibar search
  - Prefer recently used items in search
  - Fix bug where omnibar search was not directly working after update from lower version
- Fix bug where editing/adding new bookmark was not possible due to redirect to search page when typing something
- Add function to create a new category on enter press                    

확장 프로그램 기본 정보

이름 Team Bookmarks Team Bookmarks
ID iajngfnciimpmongkmmhoplkejjloini
공식 URL https://chromewebstore.google.com/detail/team-bookmarks/iajngfnciimpmongkmmhoplkejjloini
설명 Bookmark extension for you & your team.
파일 크기 941 KB
설치 횟수 33
현재 버전 0.2.7
최근 업데이트 2021-11-16
출시 날짜 2020-11-24
개발자 Robert Ehni
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/ehni/bookmark-extension-vue
도움말 페이지 URL https://gitlab.com/ehni/bookmark-extension-vue/-/issues
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Team Bookmarks",
    "description": "Bookmark extension for you & your team.",
    "default_locale": "en",
    "permissions": [
        "storage",
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "favicon.png",
        "48": "favicon.png",
        "128": "favicon.png"
    },
    "omnibox": {
        "keyword": "bm"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Open Team Bookmarks",
        "default_icon": {
            "19": "favicon.png",
            "38": "favicon.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            }
        }
    },
    "version": "0.2.7"
}