Bookmark This

Create bookmark entries from links in a page

Bookmark This란 무엇입니까?

Bookmark This은(는) Owen Rumney에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create bookmark entries from links in a page"입니다.

확장 프로그램 스크린샷

screenshot

Bookmark This 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Don't interrupt your flow when reading an article, create bookmarks from any link in the current page, with out having to load the link.

Simply right click the link and select "Bookmark this", if the suggested bookmark title isn't right, just change it.

Early stages, so feedback welcome.                    

확장 프로그램 기본 정보

이름 Bookmark This Bookmark This
ID cdgfikopcomgllhdlknlfgblhmhemljn
공식 URL https://chrome.google.com/webstore/detail/bookmark-this/cdgfikopcomgllhdlknlfgblhmhemljn
설명 Create bookmark entries from links in a page
파일 크기 9.47 KB
설치 횟수 28
현재 버전 0.9.3
최근 업데이트 2019-05-30
출시 날짜 2019-05-30
평점 2.00/5 총 6 개의 평점
개발자 Owen Rumney
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark This",
    "description": "Create bookmark entries from links in a page",
    "version": "0.9.3",
    "permissions": [
        "bookmarks",
        "contextMenus",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "runat": "document_end"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}