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

什么是RunJS - Collect UI Component from any website?

RunJS - Collect UI Component from any website是由https://runjs.work开发的Chrome扩展程序,该扩展的主要功能是“Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers”。

扩展截图

screenshot
screenshot

下载RunJS - Collect UI Component from any website扩展crx文件

下载RunJS - Collect UI Component from any website扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 RunJS - Collect UI Component from any website RunJS - Collect UI Component from any website
ID iieaikfjknmhoicpfabeppbmmabmjcma
官方URL https://chromewebstore.google.com/detail/runjs-collect-ui-componen/iieaikfjknmhoicpfabeppbmmabmjcma
简介 Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers
文件大小 1.22 MB
安装次数 278
当前版本 1.1.17
更新时间 2024-02-01
上架时间 2022-08-24
评分 5.00/5 共3次评分
开发者 https://runjs.work
电子邮箱 [email protected]
付费类型 free
扩展官网 https://runjs.work
帮助页面URL https://runjs.work/article/c75b61641f2841a0
隐私政策页面URL https://runjs.work/article/d9b2418886fd4489
支持的语言 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": []
        }
    ]
}