Runme Web Extension

A Runme browser extension to bring Runme capabilities into the browser.

Co to jest Runme Web Extension?

Runme Web Extension to rozszerzenie Chrome opracowane przez https://stateful.com, a jego główną funkcją jest „A Runme browser extension to bring Runme capabilities into the browser.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Runme Web Extension

Pobierz pliki rozszerzeń Runme Web Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension adds Runme links to GitHub repositories that allow you to checkout any project locally with a single click. VS Code will open the markdown file that you view in the browser right in VS Code with the Runme notebook experience.                    

Podstawowe informacje o rozszerzeniu

Nazwa Runme Web Extension Runme Web Extension
ID lnihnbkolojkaehnkdmpliededkfebkk
Oficjalny URL https://chromewebstore.google.com/detail/runme-web-extension/lnihnbkolojkaehnkdmpliededkfebkk
Opis A Runme browser extension to bring Runme capabilities into the browser.
Rozmiar pliku 40.46 KB
Liczba instalacji 61
Aktualna Wersja 0.0.11
Ostatnia Aktualizacja 2023-04-11
Data Publikacji 2023-04-08
Deweloper https://stateful.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://runme.dev/
Adres URL Strony Pomocy https://discord.gg/BQm8zRCBUY
Adres URL Strony Polityki Prywatności https://stateful.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Runme Web Extension",
    "author": "[email protected]",
    "description": "A Runme browser extension to bring Runme capabilities into the browser.",
    "homepage_url": "https:\/\/runme.dev",
    "version": "0.0.11",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/index.global.js"
            ],
            "css": [
                ".\/style.css"
            ]
        }
    ],
    "permissions": [],
    "icons": {
        "72": "icon-72x72.png",
        "96": "icon-96x96.png",
        "128": "icon-128x128.png",
        "144": "icon-144x144.png",
        "152": "icon-152x152.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{7f52a323-53cf-43bf-a24b-3b5630e424c6}",
            "strict_min_version": "100.0"
        }
    }
}