Runme Web Extension
A Runme browser extension to bring Runme capabilities into the browser.
Runme Web Extension क्या है?
Runme Web Extension https://stateful.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Runme browser extension to bring Runme capabilities into the browser."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Runme Web Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } } |