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 là gì?

View background image là một tiện ích mở rộng Chrome được phát triển bởi Espen Hovlandsdal, và tính năng chính của nó là "Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.".

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

screenshot

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

Tải xuống các tệp mở rộng View background image 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

                        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.                    

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

Tên View background image View background image
ID mjbfbknmcdpofdfkeencgjaolgcddglh
URL Chính Thức https://chromewebstore.google.com/detail/view-background-image/mjbfbknmcdpofdfkeencgjaolgcddglh
Mô tả Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.
Kích Thước Tệp 7.62 KB
Số Lần Cài Đặt 1,849
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2016-08-07
Ngày Phát Hành 2016-08-07
Đánh Giá 2.85/5 Tổng số 41 Đánh Giá
Nhà Phát Triển Espen Hovlandsdal
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rexxars/view-background-image
URL Trang Trợ Giúp https://github.com/rexxars/view-background-image/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}