Github to Stackblitz
Add a button in github that open the current project into Stackblitz
Hvad er Github to Stackblitz?
Github to Stackblitz er en Chrome-udvidelse udviklet af alain21218, og dens hovedfunktion er "Add a button in github that open the current project into Stackblitz".
Udvidelsesskærmbilleder
Download Github to Stackblitz-udvidelses-CRX-fil
Download Github to Stackblitz-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jogplfjfklbkeihnmnfkccbgceaohlhm |
| Officiel URL | https://chrome.google.com/webstore/detail/github-to-stackblitz/jogplfjfklbkeihnmnfkccbgceaohlhm |
| Beskrivelse | Add a button in github that open the current project into Stackblitz |
| Filstørrelse | 18.76 KB |
| Antal Installationer | 190 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2018-06-17 |
| Udgivelsesdato | 2018-06-17 |
| Bedømmelse | 4.00/5 Samlet 2 Bedømmelser |
| Udvikler | alain21218 |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
}
]
} | |