GitHub Issues Instant Solutions
Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Cos'è GitHub Issues Instant Solutions?
GitHub Issues Instant Solutions è un'estensione di Chrome sviluppata da Martin Galovic, e la sua funzione principale è "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Issues Instant Solutions
Scarica i file di estensione GitHub Issues Instant Solutions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Find Github Issue solution instantly — just click "Jump to the solution" button Informazioni di Base sull'Estensione
| Nome | |
| ID | efdnmggekpecdpgllnnlehdobkealhem |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem |
| Descrizione | Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly. |
| Dimensione del File | 227 KB |
| Conteggio Installazioni | 67 |
| Versione Corrente | 1.0.5 |
| Ultimo Aggiornamento | 2020-02-29 |
| Data di Pubblicazione | 2020-02-29 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | Martin Galovic |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://issues.martingalovic.com |
| Lingue Supportate | 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"
}
} | |