aside

A modular browser extension for developers

aside क्या है?

aside Alex Clark द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A modular browser extension for developers"।

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

screenshot

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

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

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

                        Aside is a modular browser extension built to be a companion to any web application. The libraries provided by Aside allows users to render React components in their own application and have their interface render into the Chrome developer tools.

This notably allows developers to build developer tools that can evolve based on any application context. Users might want to use this to tailor their development experience based on:

- State management libraries (Redux, Recoil, Jotai)
- State persistence (Apollo cache, local storage)
- App routes                    

एक्सटेंशन की मूल जानकारी

नाम aside aside
ID pecefkiefodjfkgfihkhkcbhlbgahoge
आधिकारिक URL https://chromewebstore.google.com/detail/aside/pecefkiefodjfkgfihkhkcbhlbgahoge
विवरण A modular browser extension for developers
फ़ाइल का आकार 120 KB
स्थापना संख्या 15
वर्तमान संस्करण 0.0.14
अंतिम अपडेट 2023-12-19
प्रकाशन तिथि 2023-07-01
डेवलपर Alex Clark
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://aside.dev
सहायता पृष्ठ URL https://github.com/alxclark/aside/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "aside",
    "version": "0.0.14",
    "description": "A modular browser extension for developers",
    "background": {
        "service_worker": ".\/dist\/background\/index.global.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": ".\/assets\/logo-16.png",
            "48": ".\/assets\/logo-48.png",
            "128": ".\/assets\/logo-128.png"
        }
    },
    "icons": {
        "16": ".\/assets\/logo-16.png",
        "48": ".\/assets\/logo-48.png",
        "128": ".\/assets\/logo-128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "webNavigation"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "devtools_page": ".\/dist\/pages\/devtools\/index.html"
}