backlog_benri

Add convenient(Benri in Japanese) functions for backlog

Wat is backlog_benri?

backlog_benri is een Chrome-extensie ontwikkeld door https://pokosho.com, en de belangrijkste functie is "Add convenient(Benri in Japanese) functions for backlog".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie backlog_benri

Download backlog_benri-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        backlogをより便利に使えるように以下の機能を追加します。
- チケットのURLをコピーするボタンを追加
- チケット番号(XXX-1234)を選択した状態でコンテキストメニュー(右クリック)を開くと、チケットを開くメニューを追加
- チケットのコメントを全て開いた状態にしておく
- 「チケットを追加しました」の画面をスキップし、チケット画面に戻る                    

Basisinformatie over de Extensie

Naam backlog_benri backlog_benri
ID pflaoamhcconalaepflbaeognfaeanlb
Officiële URL https://chrome.google.com/webstore/detail/backlogbenri/pflaoamhcconalaepflbaeognfaeanlb
Beschrijving Add convenient(Benri in Japanese) functions for backlog
Bestandsgrootte 551 KB
Aantal Installaties 17
Huidige Versie 0.1.2
Laatst Bijgewerkt 2018-03-19
Publicatiedatum 2018-03-19
Ontwikkelaar https://pokosho.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kaibadash/backlog_benri_chrome_extention
Help Pagina-URL https://github.com/kaibadash/backlog_benri_chrome_extention
URL van de Privacybeleid Pagina https://github.com/kaibadash/backlog_benri_chrome_extention
Ondersteunde Talen 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
        }
    ]
}