OctoPermalinker
Fixes broken GitHub links.
Qu'est-ce que OctoPermalinker ?
OctoPermalinker est une extension Chrome développée par Joseph Frazier, et sa fonction principale est "Fixes broken GitHub links.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OctoPermalinker
Téléchargez les fichiers d'extension OctoPermalinker 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
OctoPermalinker is a browser extension that searches GitHub comments/files for links to files on branches, and adds a link to where the branch pointed when the comment/file was made/updated. This helps you avoid following a link that was broken after being posted. For context, here's some discussion about broken GitHub links: https://news.ycombinator.com/item?id=8046710
Informations de Base sur l'Extension
Nom | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
URL Officiel | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
Description | Fixes broken GitHub links. |
Taille du Fichier | 373 KB |
Nombre d'Installations | 239 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2017-05-20 |
Date de Publication | 2017-05-20 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Joseph Frazier |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/josephfrazier/octopermalinker |
URL de la Page d'Aide | https://github.com/josephfrazier/octopermalinker/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoPermalinker", "version": "1.0.0", "manifest_version": 2, "author": "Joseph Frazier", "description": "Fixes broken GitHub links.", "homepage_url": "https:\/\/github.com\/josephfrazier\/octopermalinker", "icons": { "212": "link-icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "app.js" ], "run_at": "document_idle", "all_frames": false } ], "web_accessible_resources": [ "link-icon.png" ], "permissions": [ "storage", "https:\/\/github.com\/", "https:\/\/gist.github.com\/" ] } |