Bookmark Image

Bookmark images from web

Bookmark Image란 무엇입니까?

Bookmark Image은(는) http://habilesoft.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark images from web"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        We all face some situation when we have searched some images, and after some days we need that image again, but there is no simple way to bookmark a image we liked, searching a liked image again consumes lot of time. Bookmark image extension helps you in bookmarking image you liked. It brings a super easy way to save image links, just right click on image and click bookmark it, Extension also includes a very user friendly view page where you can see all bookmarked images. Bookmark image completely integrated with Google image and it stores official image link, so you don't just have cache image. you can visit official site of image again.                    

확장 프로그램 기본 정보

이름 Bookmark Image Bookmark Image
ID flmlfccbjpnpgfpbolfbbnlkccbanoji
공식 URL https://chrome.google.com/webstore/detail/bookmark-image/flmlfccbjpnpgfpbolfbbnlkccbanoji
설명 Bookmark images from web
파일 크기 352 KB
설치 횟수 221
현재 버전 1.0.0
최근 업데이트 2014-10-28
출시 날짜 2014-10-28
평점 4.13/5 총 8 개의 평점
개발자 http://habilesoft.com
결제 유형 free
확장 프로그램 웹 사이트 http://habilesoft.com/product/bookmark-image/
도움말 페이지 URL http://habilesoft.com/product/bookmark-image/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark Image",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon\/16X16.png",
        "48": "images\/icon\/48X48.png",
        "128": "images\/icon\/128X128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "sample.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon\/19X19.png",
            "38": "images\/icon\/38X38.png",
            "128": "images\/icon\/128X128.png"
        },
        "default_title": "Bookmark Image",
        "default_popup": "browseraction\/popup.html"
    },
    "omnibox": {
        "keyword": "Bookmark Image"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/*.google.*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "notifications",
        "background",
        "cookies"
    ]
}