Overlay

description

Overlay क्या है?

Overlay OS-SCAR द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "description"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Overlay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}