aside

A modular browser extension for developers

aside란 무엇입니까?

aside은(는) Alex Clark에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A modular browser extension for developers"입니다.

확장 프로그램 스크린샷

screenshot

aside 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}