Octopatcher
Arrgh Some Patchy Goodness to GitHub
Τι είναι το Octopatcher;
Το Octopatcher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mottie, και η κύρια λειτουργία του είναι "Arrgh Some Patchy Goodness to GitHub".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Octopatcher
Λήψη αρχείων επέκτασης Octopatcher σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
* Collapse Content: Adds a header to issue comments which allows toggling the view of long code and quote blocks. * Collapse Markdown: Make all markdown headers clickable to allow toggling the view of all content between same level headers.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Octopatcher |
ID | lcilaoigfgceebdljpanjenhmnoijmal |
Επίσημο URL | https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal |
Περιγραφή | Arrgh Some Patchy Goodness to GitHub |
Μέγεθος Αρχείου | 17.72 KB |
Αριθμός Εγκαταστάσεων | 155 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2018-01-04 |
Ημερομηνία Δημοσίευσης | 2018-01-04 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | Mottie |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Mottie/Octopatcher |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/Mottie/Octopatcher/tree/master/docs |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Octopatcher", "version": "1.1.1", "description": "Arrgh Some Patchy Goodness to GitHub", "author": "Rob Garrison", "manifest_version": 2, "homepage_url": "http:\/\/github.com\/Mottie\/Octopatcher", "permissions": [ "storage" ], "content_scripts": [ { "js": [ "github-collapse-in-comment.js", "github-collapse-markdown.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*", "https:\/\/help.github.com\/*" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icon16.png", "19": "images\/icon19.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |