Pkgsrc Freeze Status
Shows status of Pkgsrc freeze
Pkgsrc Freeze Status란 무엇입니까?
Pkgsrc Freeze Status은(는) Travis Paul에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows status of Pkgsrc freeze"입니다.
확장 프로그램 스크린샷
Pkgsrc Freeze Status 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Shows the status of a pkgsrc freeze. The typical orange Pkgsrc icon is shown if there is no freeze and a blue icon is shown if there is a freeze. Now there's no excuse to say you didn't know the Pkgsrc tree was frozen! Technical Details: This extension uses the chrome alarm API to make a HEAD request to http://www.pkgsrc.org/is-a-freeze-on/ to see if there is currently a pkgsrc freeze. If the ETag changes (or on the first request) we make a full GET and parse the document body to see if there is a freeze.
확장 프로그램 기본 정보
이름 | Pkgsrc Freeze Status |
ID | hkjbalmocmojflppelljlnjpcmkbidph |
공식 URL | https://chromewebstore.google.com/detail/pkgsrc-freeze-status/hkjbalmocmojflppelljlnjpcmkbidph |
설명 | Shows status of Pkgsrc freeze |
파일 크기 | 41.21 KB |
설치 횟수 | 59 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2016-01-05 |
출시 날짜 | 2016-01-05 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | Travis Paul |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/TravisPaul/crx-pkgsrc-freeze |
도움말 페이지 URL | https://github.com/TravisPaul/crx-pkgsrc-freeze/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "version": "1.0.0", "manifest_version": 2, "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "img\/16-pkgsrc.png", "19": "img\/19-pkgsrc.png", "48": "img\/48-pkgsrc.png", "128": "img\/128-pkgsrc.png" }, "browser_action": { "default_icon": { "19": "img\/19-default.png", "38": "img\/38-default.png" }, "default_title": "__MSG_status_unknown__" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "http:\/\/www.pkgsrc.org\/is-a-freeze-on\/", "alarms" ], "offline_enabled": false } |