OctoPermalinker
Fixes broken GitHub links.
OctoPermalinker란 무엇입니까?
OctoPermalinker은(는) Joseph Frazier에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fixes broken GitHub links."입니다.
확장 프로그램 스크린샷
OctoPermalinker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/" ] } |