Overlay

description

什麼是Overlay?

Overlay是由OS-SCAR開發的Chrome擴展程式,該擴展的主要功能是“description”。

擴展截圖

screenshot

下載Overlay擴展crx文件

下載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
官方網址 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
}