OctoPermalinker
Fixes broken GitHub links.
What is OctoPermalinker?
OctoPermalinker is a Chrome extension developed by Joseph Frazier, and its main feature is "Fixes broken GitHub links.".
Extension Screenshots
Download OctoPermalinker Extension CRX File
Download OctoPermalinker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
Official URL | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
Description | Fixes broken GitHub links. |
File Size | 373 KB |
Installation Count | 239 |
Current Version | 1.0.0 |
Last Updated | 2017-05-20 |
Publish Date | 2017-05-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Joseph Frazier |
Payment Type | free |
Extension Website | https://github.com/josephfrazier/octopermalinker |
Help Page URL | https://github.com/josephfrazier/octopermalinker/issues |
Supported Languages | 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\/" ] } |