GitHub Issues Instant Solutions
Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Wat is GitHub Issues Instant Solutions?
GitHub Issues Instant Solutions is een Chrome-extensie ontwikkeld door Martin Galovic, en de belangrijkste functie is "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub Issues Instant Solutions
Download GitHub Issues Instant Solutions-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
Find Github Issue solution instantly — just click "Jump to the solution" button
Basisinformatie over de Extensie
Naam | GitHub Issues Instant Solutions |
ID | efdnmggekpecdpgllnnlehdobkealhem |
Officiële URL | https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem |
Beschrijving | Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly. |
Bestandsgrootte | 227 KB |
Aantal Installaties | 67 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2020-02-29 |
Publicatiedatum | 2020-02-29 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Martin Galovic |
Betalingswijze | free |
Extensiewebsite | https://issues.martingalovic.com |
Ondersteunde Talen | 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" } } |