Runme Web Extension
A Runme browser extension to bring Runme capabilities into the browser.
什麼是Runme Web Extension?
Runme Web Extension是由https://stateful.com開發的Chrome擴展程式,該擴展的主要功能是“A Runme browser extension to bring Runme capabilities into the browser.”。
擴展截圖
下載Runme Web Extension擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | lnihnbkolojkaehnkdmpliededkfebkk |
| 官方網址 | 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"
}
}
} | |