behind!

Finds and opens all images under your cursor.

behind! là gì?

behind! là một tiện ích mở rộng Chrome được phát triển bởi Devrim Şahin, và tính năng chính của nó là "Finds and opens all images under your cursor.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng behind!

Tải xuống các tệp mở rộng behind! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên behind! behind!
ID blfpdedbdighagggfhgihcocfheicfjk
URL Chính Thức https://chromewebstore.google.com/detail/behind/blfpdedbdighagggfhgihcocfheicfjk
Mô tả Finds and opens all images under your cursor.
Kích Thước Tệp 48.65 KB
Số Lần Cài Đặt 1,833
Phiên Bản Hiện Tại 0.2.20
Cập Nhật Lần Cuối 2022-04-16
Ngày Phát Hành 2020-04-07
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Devrim Şahin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kubuzetto/behind
URL Trang Trợ Giúp https://github.com/kubuzetto/behind/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}