pr-template
pr-template
What is pr-template?
pr-template is a Chrome extension developed by inhwan, and its main feature is "pr-template".
Extension Screenshots
Download pr-template Extension CRX File
Download pr-template 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
SKP 개발혁신팀 bitbucket용 플러그인입니다. 1. 풀리퀘스트 생성 시 템플릿 자동완성 2. 코드 블럭 하단에 카피 버튼 자동생성 기능을 제공하며 차후 추가 예정입니다.
Extension Basic Information
Name | pr-template |
ID | cgiehjgnkmjghgjhpehgkknhmoaphimh |
Official URL | https://chromewebstore.google.com/detail/pr-template/cgiehjgnkmjghgjhpehgkknhmoaphimh |
Description | pr-template |
File Size | 175 KB |
Installation Count | 54 |
Current Version | 1.2 |
Last Updated | 2017-07-10 |
Publish Date | 2017-07-09 |
Rating | 5.00/5 Total 2 Ratings |
Developer | inhwan |
Payment Type | free |
Supported Languages | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "pr-template", "description": "pr-template", "version": "1.2", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "pr-template" }, "permissions": [ "activeTab", "https:\/\/bitbucket.skplanet.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/bitbucket.skplanet.com\/*" ], "js": [ "script.js" ], "css": [ "script.css" ], "run_at": "document_end" } ] } |