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 |
官方網址 | 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\/" ] } |