View background image

Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.

View background image란 무엇입니까?

View background image은(는) Espen Hovlandsdal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image."입니다.

확장 프로그램 스크린샷

screenshot

View background image 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds a new menu item to web pages - "open background image in new tab". Will try to find the closest element to the clicked area that has a background image.

Tries to mirror Chrome's own "open image in new tab"-functionality, but currently there seems to be no way in Chrome extensions to show a context menu item based on the return value of a function, so currently it is always shown, regardless of the presence of a background image.

This extension is open-source and MIT-licensed. Source code can be found at https://github.com/rexxars/view-background-image - contributions are welcome.                    

확장 프로그램 기본 정보

이름 View background image View background image
ID mjbfbknmcdpofdfkeencgjaolgcddglh
공식 URL https://chromewebstore.google.com/detail/view-background-image/mjbfbknmcdpofdfkeencgjaolgcddglh
설명 Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.
파일 크기 7.62 KB
설치 횟수 1,849
현재 버전 1.0.3
최근 업데이트 2016-08-07
출시 날짜 2016-08-07
평점 2.85/5 총 41 개의 평점
개발자 Espen Hovlandsdal
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rexxars/view-background-image
도움말 페이지 URL https://github.com/rexxars/view-background-image/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "View background image",
    "version": "1.0.3",
    "description": "Adds a \"open background image in new tab\" menu item. Finds closest element to the clicked area that has a background image.",
    "permissions": [
        "contextMenus",
        ""
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    }
}