Overlay

description

Overlayคืออะไร?

Overlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย OS-SCAR และคุณลักษณะหลักของมันคือ "description"

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

screenshot

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

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

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

                        Provides an overlay with insights to developers. This extension gather data from sources regarding open source packages   

This Chrome extension provides developers with a useful overlay that displays useful insights related to open source packages. It gathers data from various sources, including Snyk Advisor, Debricked, Openbase, Socket.dev, and Deps.dev, allowing developers to gain a better understanding of the dependencies they are using, and making it easier to find and use the right packages for their projects. 

With this extension, developers can quickly identify potential issues, get up-to-date information on packages, and ensure they are using the most reliable and secure packages available. It is designed to make it easier than ever for developers to stay informed about the packages they are using, and help them make the best decisions for their projects. With the insights and data provided by this extension, developers can stay ahead of the curve and ensure the success of their projects.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Overlay Overlay
ID fahpefingaaldhifdbnlipfjniabkiho
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/overlay/fahpefingaaldhifdbnlipfjniabkiho
คำอธิบาย description
ขนาดไฟล์ 234 KB
จำนวนการติดตั้ง 331
เวอร์ชันปัจจุบัน 1.18.6
อัปเดตครั้งล่าสุด 2024-02-21
วันที่เผยแพร่ 2023-02-21
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา OS-SCAR
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://os-scar.com
URL หน้าช่วยเหลือ https://github.com/os-scar/overlay
URL หน้านโยบายความเป็นส่วนตัว https://github.com/os-scar/policies/blob/main/privacy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overlay",
    "version": "1.18.6",
    "description": "description",
    "host_permissions": [
        "https:\/\/deps.dev\/*",
        "https:\/\/debricked.com\/*",
        "https:\/\/socket.dev\/*",
        "https:\/\/snyk.io\/*"
    ],
    "icons": {
        "48": "icons\/icon_48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/stackoverflow.com\/*"
            ],
            "js": [
                "content.stackoverflow.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.npmjs.com\/*"
            ],
            "js": [
                "content.npmjs.js"
            ]
        },
        {
            "matches": [
                "*:\/\/pypi.org\/project\/*"
            ],
            "js": [
                "content.pypi.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icons\/icon_48.png",
        "default_title": "Overlay",
        "default_popup": "popup\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "custom-elements.js",
                "custom-elements.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/stackoverflow.com\/*"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "manifest_version": 3
}