GitHub Issues Instant Solutions
Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Qu'est-ce que GitHub Issues Instant Solutions ?
GitHub Issues Instant Solutions est une extension Chrome développée par Martin Galovic, et sa fonction principale est "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Issues Instant Solutions
Téléchargez les fichiers d'extension GitHub Issues Instant Solutions au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Find Github Issue solution instantly — just click "Jump to the solution" button
Informations de Base sur l'Extension
Nom | GitHub Issues Instant Solutions |
ID | efdnmggekpecdpgllnnlehdobkealhem |
URL Officiel | https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem |
Description | Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly. |
Taille du Fichier | 227 KB |
Nombre d'Installations | 67 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2020-02-29 |
Date de Publication | 2020-02-29 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Martin Galovic |
Type de Paiement | free |
Site Web de l'Extension | https://issues.martingalovic.com |
Langues Prises en Charge | 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" } } |