Github to Stackblitz
Add a button in github that open the current project into Stackblitz
Wat is Github to Stackblitz?
Github to Stackblitz is een Chrome-extensie ontwikkeld door alain21218, en de belangrijkste functie is "Add a button in github that open the current project into Stackblitz".
Extensie Screenshots
Download het CRX-bestand van de extensie Github to Stackblitz
Download Github to Stackblitz-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
| Naam | |
| ID | jogplfjfklbkeihnmnfkccbgceaohlhm |
| Officiële URL | https://chrome.google.com/webstore/detail/github-to-stackblitz/jogplfjfklbkeihnmnfkccbgceaohlhm |
| Beschrijving | Add a button in github that open the current project into Stackblitz |
| Bestandsgrootte | 18.76 KB |
| Aantal Installaties | 190 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2018-06-17 |
| Publicatiedatum | 2018-06-17 |
| Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | alain21218 |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Github to Stackblitz",
"version": "1.0",
"description": "Add a button in github that open the current project into Stackblitz",
"icons": {
"48": "logo.png"
},
"web_accessible_resources": [
"logo.png"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*"
],
"js": [
"button.js"
]
}
]
} | |