GitHub Issues Instant Solutions
Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Was ist GitHub Issues Instant Solutions?
GitHub Issues Instant Solutions ist eine Chrome-Erweiterung, die von Martin Galovic entwickelt wurde, und ihr Hauptmerkmal ist "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".
Erweiterungsscreenshots
GitHub Issues Instant Solutions-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Issues Instant Solutions-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
Find Github Issue solution instantly — just click "Jump to the solution" button Grundlegende Informationen zur Erweiterung
| Name | |
| ID | efdnmggekpecdpgllnnlehdobkealhem |
| Offizielle URL | https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem |
| Beschreibung | Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly. |
| Dateigröße | 227 KB |
| Installationsanzahl | 67 |
| Aktuelle Version | 1.0.5 |
| Letztes Update | 2020-02-29 |
| Veröffentlichungsdatum | 2020-02-29 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Martin Galovic |
| Zahlungsart | free |
| Erweiterungswebsite | https://issues.martingalovic.com |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GitHub Issues Instant Solutions",
"version": "1.0.5",
"description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.",
"icons": {
"16": "public\/icons\/icon_16.png",
"48": "public\/icons\/icon_48.png",
"128": "public\/icons\/icon_128.png"
},
"background": {
"persistent": true,
"scripts": [
"public\/background_script.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*",
"https:\/\/www.github.com\/*",
"http:\/\/github.com\/*",
"http:\/\/www.github.com\/*"
],
"css": [
"public\/github_content_styles.css"
],
"js": [
"public\/underscore.min.js",
"public\/jquery.min.js",
"public\/github_content_script.js"
]
}
],
"permissions": [
"https:\/\/github.com\/*",
"https:\/\/www.github.com\/*",
"http:\/\/github.com\/*",
"http:\/\/www.github.com\/*"
],
"browser_action": {
"default_icon": "public\/icons\/icon_16.png",
"default_popup": "public\/html\/popup.html"
}
} | |