backlog_benri
Add convenient(Benri in Japanese) functions for backlog
What is backlog_benri?
backlog_benri is a Chrome extension developed by https://pokosho.com, and its main feature is "Add convenient(Benri in Japanese) functions for backlog".
Extension Screenshots
Download backlog_benri Extension CRX File
Download backlog_benri 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
backlogをより便利に使えるように以下の機能を追加します。
- チケットのURLをコピーするボタンを追加
- チケット番号(XXX-1234)を選択した状態でコンテキストメニュー(右クリック)を開くと、チケットを開くメニューを追加
- チケットのコメントを全て開いた状態にしておく
- 「チケットを追加しました」の画面をスキップし、チケット画面に戻る Extension Basic Information
| Name | |
| ID | pflaoamhcconalaepflbaeognfaeanlb |
| Official URL | https://chrome.google.com/webstore/detail/backlogbenri/pflaoamhcconalaepflbaeognfaeanlb |
| Description | Add convenient(Benri in Japanese) functions for backlog |
| File Size | 551 KB |
| Installation Count | 17 |
| Current Version | 0.1.2 |
| Last Updated | 2018-03-19 |
| Publish Date | 2018-03-19 |
| Developer | https://pokosho.com |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://github.com/kaibadash/backlog_benri_chrome_extention |
| Help Page URL | https://github.com/kaibadash/backlog_benri_chrome_extention |
| Privacy Policy Page URL | https://github.com/kaibadash/backlog_benri_chrome_extention |
| Supported Languages | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "backlog_benri",
"short_name": "backlog_benri",
"version": "0.1.2",
"manifest_version": 2,
"description": "Add convenient(Benri in Japanese) functions for backlog",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"web_accessible_resources": [
"images\/link.png"
],
"default_locale": "ja",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"permissions": [
"tabs",
"https:\/\/*\/*",
"http:\/\/*\/*",
"background",
"clipboardWrite",
"contextMenus",
"storage"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"https:\/\/*.backlog.jp\/*"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
]
} | |