RunJS - Collect UI Component from any website

Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers

Cos'è RunJS - Collect UI Component from any website?

RunJS - Collect UI Component from any website è un'estensione di Chrome sviluppata da https://runjs.work, e la sua funzione principale è "Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione RunJS - Collect UI Component from any website

Scarica i file di estensione RunJS - Collect UI Component from any website in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        RunJS is an online Javascript playground, for creating/collecting and sharing html/css/js code. Without switching from browser tabs or apps, user can write a code snippet or markdown note for current viewing technical article.

You can also use RunJS chrome extension to collect UI component from any website easily. The output is only pure html/css code based on user-defined styles on origin website, no getComputedStyle. Support tailwind/inline style, support JSX, support simple hover effects and css animations.                    

Informazioni di Base sull'Estensione

Nome RunJS - Collect UI Component from any website RunJS - Collect UI Component from any website
ID iieaikfjknmhoicpfabeppbmmabmjcma
URL Ufficiale https://chromewebstore.google.com/detail/runjs-collect-ui-componen/iieaikfjknmhoicpfabeppbmmabmjcma
Descrizione Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers
Dimensione del File 1.22 MB
Conteggio Installazioni 278
Versione Corrente 1.1.17
Ultimo Aggiornamento 2024-02-01
Data di Pubblicazione 2022-08-24
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://runjs.work
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://runjs.work
URL della Pagina di Aiuto https://runjs.work/article/c75b61641f2841a0
URL della Pagina della Politica sulla Privacy https://runjs.work/article/d9b2418886fd4489
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers",
    "version": "1.1.17",
    "manifest_version": 3,
    "name": "RunJS - Collect UI Component from any website",
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "16": "icon-16.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "contentScript.css"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtools.html",
    "permissions": [
        "storage",
        "cookies"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}