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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Espen Hovlandsdal และคุณลักษณะหลักของมันคือ "Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย View background image

ดาวน์โหลดไฟล์ส่วนขยาย View background image ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}