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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": []
        }
    ]
}