Open in GitHub1s
Add a new navigation option to open GitHub repositories in GitHub1s.
Wat is Open in GitHub1s?
Open in GitHub1s is een Chrome-extensie ontwikkeld door zacharysmith, en de belangrijkste functie is "Add a new navigation option to open GitHub repositories in GitHub1s.".
Extensie Screenshots
Download het CRX-bestand van de extensie Open in GitHub1s
Download Open in GitHub1s-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
GitHub1s is a web-app for viewing GitHub repository files online, using a web-compiled version of VSCode. This extension introduces a new UI button to the GitHub repository file navigation bar, enabling users to easily open the repository inside the GitHub1s website. Basisinformatie over de Extensie
| Naam | |
| ID | iijaagbkdohcopmmohlgfkcloefoeaoj |
| Officiële URL | https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj |
| Beschrijving | Add a new navigation option to open GitHub repositories in GitHub1s. |
| Bestandsgrootte | 127 KB |
| Aantal Installaties | 1,601 |
| Huidige Versie | 1.5 |
| Laatst Bijgewerkt | 2022-05-10 |
| Publicatiedatum | 2021-08-18 |
| Ontwikkelaar | zacharysmith |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/Cutwell/github1s-chrome-extension |
| Help Pagina-URL | https://github.com/Cutwell/github1s-chrome-extension |
| Ondersteunde Talen | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Open in GitHub1s",
"version": "1.5",
"description": "Add a new navigation option to open GitHub repositories in GitHub1s.",
"permissions": [
"storage"
],
"action": {
"default_icon": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
},
"content_scripts": [
{
"js": [
"data\/js\/content.js"
],
"css": [
"data\/css\/extension.css"
],
"matches": [
"https:\/\/github.com\/*"
]
}
],
"manifest_version": 3
} | |