Open in GitHub1s
Add a new navigation option to open GitHub repositories in GitHub1s.
Was ist Open in GitHub1s?
Open in GitHub1s ist eine Chrome-Erweiterung, die von zacharysmith entwickelt wurde, und ihr Hauptmerkmal ist "Add a new navigation option to open GitHub repositories in GitHub1s.".
Erweiterungsscreenshots
Open in GitHub1s-Erweiterungs-CRX-Datei herunterladen
Laden Sie Open in GitHub1s-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iijaagbkdohcopmmohlgfkcloefoeaoj |
| Offizielle URL | https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj |
| Beschreibung | Add a new navigation option to open GitHub repositories in GitHub1s. |
| Dateigröße | 127 KB |
| Installationsanzahl | 1,601 |
| Aktuelle Version | 1.5 |
| Letztes Update | 2022-05-10 |
| Veröffentlichungsdatum | 2021-08-18 |
| Entwickler | zacharysmith |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Cutwell/github1s-chrome-extension |
| Hilfeseite URL | https://github.com/Cutwell/github1s-chrome-extension |
| Unterstützte Sprachen | 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
} | |