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 là gì?

RunJS - Collect UI Component from any website là một tiện ích mở rộng Chrome được phát triển bởi https://runjs.work, và tính năng chính của nó là "Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng RunJS - Collect UI Component from any website

Tải xuống các tệp mở rộng RunJS - Collect UI Component from any website dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên RunJS - Collect UI Component from any website RunJS - Collect UI Component from any website
ID iieaikfjknmhoicpfabeppbmmabmjcma
URL Chính Thức https://chromewebstore.google.com/detail/runjs-collect-ui-componen/iieaikfjknmhoicpfabeppbmmabmjcma
Mô tả Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers
Kích Thước Tệp 1.22 MB
Số Lần Cài Đặt 278
Phiên Bản Hiện Tại 1.1.17
Cập Nhật Lần Cuối 2024-02-01
Ngày Phát Hành 2022-08-24
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://runjs.work
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://runjs.work
URL Trang Trợ Giúp https://runjs.work/article/c75b61641f2841a0
URL Trang Chính Sách Bảo Mật https://runjs.work/article/d9b2418886fd4489
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}