aside

A modular browser extension for developers

asideคืออะไร?

aside เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Clark และคุณลักษณะหลักของมันคือ "A modular browser extension for developers"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย aside

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}