behind!

Finds and opens all images under your cursor.

behind!란 무엇입니까?

behind!은(는) Devrim Şahin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Finds and opens all images under your cursor."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

behind! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When "view background image" is greyed out, this add-on is there to help you.

behind! can reveal:

- Background images,
- Images under layers of nonsense (e.g. clickable surfaces designed to hide the image from you),
- Embedded images / base64-encoded image chunks,
- Alternative resolutions ,
- Vector images (even when they are inlined),
- Images in shadow DOM

Source code: https://github.com/kubuzetto/behind                    

확장 프로그램 기본 정보

이름 behind! behind!
ID blfpdedbdighagggfhgihcocfheicfjk
공식 URL https://chromewebstore.google.com/detail/behind/blfpdedbdighagggfhgihcocfheicfjk
설명 Finds and opens all images under your cursor.
파일 크기 48.65 KB
설치 횟수 1,833
현재 버전 0.2.20
최근 업데이트 2022-04-16
출시 날짜 2020-04-07
평점 4.80/5 총 5 개의 평점
개발자 Devrim Şahin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kubuzetto/behind
도움말 페이지 URL https://github.com/kubuzetto/behind/issues
지원되는 언어 en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "version": "0.2.20",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "",
        "tabs",
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "256": "icon256.png"
    }
}