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
电子邮箱 [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"
}