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 - это расширение Chrome, разработанное https://runjs.work, и его основная функция - "Another Javascript playground and an extension to collect UI component code for developers, just like pinterest for designers".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения RunJS - Collect UI Component from any website

Скачайте файлы расширений 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": []
        }
    ]
}