aside

A modular browser extension for developers

asideとは何ですか?

asideはAlex Clarkによって開発されたChromeの拡張機能で、その主な機能は「A modular browser extension for developers」です。

拡張機能のスクリーンショット

screenshot

aside拡張機能のCRXファイルをダウンロード

aside拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}