Ghost Bookmarker

Use Ghost Bookmarker to easily add links and notes to a post, straight from your browser.

Ghost Bookmarker란 무엇입니까?

Ghost Bookmarker은(는) Ghost에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Ghost Bookmarker to easily add links and notes to a post, straight from your browser."입니다.

확장 프로그램 스크린샷

screenshot

Ghost Bookmarker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use Ghost Bookmarker to easily add links and notes to a post, straight from your browser. Links are saved as a bookmark card (with an optional note) to a draft post called “Bookmarked links.” If this post doesn’t already exist, it’s created for you. Otherwise, bookmark cards are added to the existing content. If you publish the post or change the title, Ghost Bookmarker will create a new post with the “Bookmarked links” title. One way to use this is to save links during the week, publish your curated link list, and then repeat the process as needed.                    

확장 프로그램 기본 정보

이름 Ghost Bookmarker Ghost Bookmarker
ID aakhcgcbiehjpkmhngjjommcdhnobpho
공식 URL https://chromewebstore.google.com/detail/ghost-bookmarker/aakhcgcbiehjpkmhngjjommcdhnobpho
설명 Use Ghost Bookmarker to easily add links and notes to a post, straight from your browser.
파일 크기 3.42 MB
설치 횟수 781
현재 버전 0.1.3
최근 업데이트 2023-12-12
출시 날짜 2023-06-03
평점 5.00/5 총 6 개의 평점
개발자 Ghost
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ghost.org/
도움말 페이지 URL https://ghost.org/integrations/bookmarker/
개인정보 보호 정책 페이지 URL https://ghost.org/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ghost Bookmarker",
    "version": "0.1.3",
    "description": "Use Ghost Bookmarker to easily add links and notes to a post, straight from your browser.",
    "permissions": [
        "storage",
        "activeTab",
        "declarativeNetRequest",
        "contextMenus",
        "notifications",
        "scripting"
    ],
    "optional_host_permissions": [
        "https:\/\/*\/*"
    ],
    "host_permissions": [
        "https:\/\/*.ghost.io\/*",
        "https:\/\/*.ghost.org\/*",
        "https:\/\/*.ghost.is\/*"
    ],
    "options_page": "pages\/options.html",
    "action": {
        "default_popup": "pages\/popup.html",
        "default_icon": {
            "16": "icons\/logo-16.png",
            "32": "icons\/logo-32.png",
            "48": "icons\/logo-48.png",
            "128": "icons\/logo-128.png"
        },
        "default_title": "Ghost Bookmarker"
    },
    "background": {
        "service_worker": "dist\/background.js",
        "type": "module"
    },
    "icons": {
        "16": "icons\/logo-16.png",
        "32": "icons\/logo-32.png",
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png"
    },
    "commands": {
        "bookmark_command": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Add a bookmark to Ghost"
        }
    }
}