Runme Web Extension

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

Runme Web Extensionคืออะไร?

Runme Web Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://stateful.com และคุณลักษณะหลักของมันคือ "A Runme browser extension to bring Runme capabilities into the browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Runme Web Extension

ดาวน์โหลดไฟล์ส่วนขยาย Runme Web Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Runme Web Extension Runme Web Extension
ID lnihnbkolojkaehnkdmpliededkfebkk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/runme-web-extension/lnihnbkolojkaehnkdmpliededkfebkk
คำอธิบาย A Runme browser extension to bring Runme capabilities into the browser.
ขนาดไฟล์ 40.46 KB
จำนวนการติดตั้ง 61
เวอร์ชันปัจจุบัน 0.0.11
อัปเดตครั้งล่าสุด 2023-04-11
วันที่เผยแพร่ 2023-04-08
ผู้พัฒนา https://stateful.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://runme.dev/
URL หน้าช่วยเหลือ https://discord.gg/BQm8zRCBUY
URL หน้านโยบายความเป็นส่วนตัว https://stateful.com/privacy
ภาษาที่รองรับ 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"
        }
    }
}