OctoPermalinker
Fixes broken GitHub links.
Wat is OctoPermalinker?
OctoPermalinker is een Chrome-extensie ontwikkeld door Joseph Frazier, en de belangrijkste functie is "Fixes broken GitHub links.".
Extensie Screenshots
Download het CRX-bestand van de extensie OctoPermalinker
Download OctoPermalinker-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
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
Basisinformatie over de Extensie
Naam | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
Officiële URL | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
Beschrijving | Fixes broken GitHub links. |
Bestandsgrootte | 373 KB |
Aantal Installaties | 239 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2017-05-20 |
Publicatiedatum | 2017-05-20 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Joseph Frazier |
Betalingswijze | free |
Extensiewebsite | https://github.com/josephfrazier/octopermalinker |
Help Pagina-URL | https://github.com/josephfrazier/octopermalinker/issues |
Ondersteunde Talen | 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\/" ] } |