OctoPermalinker
Fixes broken GitHub links.
什么是OctoPermalinker?
OctoPermalinker是由Joseph Frazier开发的Chrome扩展程序,该扩展的主要功能是“Fixes broken GitHub links.”。
扩展截图
下载OctoPermalinker扩展crx文件
下载OctoPermalinker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
官方URL | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
简介 | Fixes broken GitHub links. |
文件大小 | 373 KB |
安装次数 | 239 |
当前版本 | 1.0.0 |
更新时间 | 2017-05-20 |
上架时间 | 2017-05-20 |
评分 | 5.00/5 共1次评分 |
开发者 | Joseph Frazier |
付费类型 | free |
扩展官网 | https://github.com/josephfrazier/octopermalinker |
帮助页面URL | https://github.com/josephfrazier/octopermalinker/issues |
支持的语言 | 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\/" ] } |