Runme Web Extension
A Runme browser extension to bring Runme capabilities into the browser.
Vad är Runme Web Extension?
Runme Web Extension är en Chrome-tillägg utvecklad av https://stateful.com, och dess huvudfunktion är "A Runme browser extension to bring Runme capabilities into the browser.".
Tilläggsskärmbilder
Ladda ner Runme Web Extension-förlängningens CRX-fil
Ladda ner Runme Web Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | lnihnbkolojkaehnkdmpliededkfebkk |
| Officiell webbadress | https://chromewebstore.google.com/detail/runme-web-extension/lnihnbkolojkaehnkdmpliededkfebkk |
| Beskrivning | A Runme browser extension to bring Runme capabilities into the browser. |
| Filstorlek | 40.46 KB |
| Antal Installationer | 61 |
| Aktuell Version | 0.0.11 |
| Senast Uppdaterad | 2023-04-11 |
| Publiceringsdatum | 2023-04-08 |
| Utvecklare | https://stateful.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://runme.dev/ |
| Hjälpsida URL | https://discord.gg/BQm8zRCBUY |
| URL till Sekretesspolicy Sidan | https://stateful.com/privacy |
| Stödda Språk | 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"
}
}
} | |