Briefkasten Bookmarks

Companion extension for the Briefkasten bookmark app.

Briefkasten Bookmarks란 무엇입니까?

Briefkasten Bookmarks은(는) https://ndo.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Companion extension for the Briefkasten bookmark app."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is an extension for saving items to your Briefkasten bookmarks collection.

By default, it will auto-fill the page title, description, etc. from your currently active tab. Of course, you can overwrite any of these fields before hitting "Save" and committing it to your collection. 

Note: This extension is useless without a Briefkasten (https://briefkasten.vercel.app) account!                    

확장 프로그램 기본 정보

이름 Briefkasten Bookmarks Briefkasten Bookmarks
ID aighkhofochfjejmhjfkgjfpkpgmjlnd
공식 URL https://chromewebstore.google.com/detail/briefkasten-bookmarks/aighkhofochfjejmhjfkgjfpkpgmjlnd
설명 Companion extension for the Briefkasten bookmark app.
파일 크기 35.84 KB
설치 횟수 244
현재 버전 0.5.2
최근 업데이트 2022-07-09
출시 날짜 2022-05-31
평점 5.00/5 총 1 개의 평점
개발자 https://ndo.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ndom91/briefkasten-extension
도움말 페이지 URL https://github.com/ndom91/briefkasten-extension/issues/new
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Briefkasten Bookmarks",
    "version": "0.5.2",
    "description": "Companion extension for the Briefkasten bookmark app.",
    "homepage_url": "https:\/\/github.com\/ndom91\/briefkasten-extension\/",
    "icons": {
        "16": "src\/icons\/logo-16x16.png",
        "48": "src\/icons\/logo-48x48.png",
        "96": "src\/icons\/logo-96x96.png",
        "128": "src\/icons\/logo-128x128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "omnibox": {
        "keyword": "bk"
    },
    "action": {
        "default_icon": {
            "16": "src\/icons\/logo-16x16.png",
            "19": "src\/icons\/logo-19x19.png",
            "32": "src\/icons\/logo-32x32.png",
            "38": "src\/icons\/logo-38x38.png"
        },
        "default_title": "Add bookmark (Alt+Shift+L)",
        "default_popup": "src\/popup\/index.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "windows": "Ctrl+Shift+K",
                "linux": "Ctrl+Shift+K"
            },
            "description": "Open a popup to bookmark current page."
        }
    },
    "options_ui": {
        "page": "src\/options\/index.html"
    },
    "permissions": [
        "storage",
        "background"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}