Redmine Notification

Redmine notification tools

O que é Redmine Notification?

Redmine Notification é uma extensão do Chrome desenvolvida por zhixin wen, e sua principal característica é "Redmine notification tools".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Redmine Notification

Baixe arquivos de extensão Redmine Notification no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # Redmine Notification

Redmine notification tools for chrome extension.

## Features

* See the problem and the discuss directly through the plugin.
* Real time updates and automatically prompted to the problem.
* Support for multiple redmine, centralized management issues.
* Support for custom issue roles (developer and tester).
* issue status and issue number.
* Support offline viewing problems.

2009-2020 www.scutech.com

mail to: [email protected]                    

Informações Básicas da Extensão

Nome Redmine Notification Redmine Notification
ID cenhhgabijhpobnfnmkigobcefkmhjbj
URL Oficial https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj
Descrição Redmine notification tools
Tamanho do Arquivo 647 KB
Contagem de Instalações 3,109
Versão Atual 2.4.2
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Classificação 4.40/5 Total de 30 Avaliações
Desenvolvedor zhixin wen
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wenzhixin/scutech-redmine
URL da Página de Ajuda https://github.com/wenzhixin/scutech-redmine/issues
Idiomas Suportados en
manifest.json
{
    "name": "Redmine Notification",
    "description": "Redmine notification tools",
    "version": "2.4.2",
    "manifest_version": 2,
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "assets\/font-awesome\/css\/font-awesome.min.css",
                "css\/redmine.css"
            ],
            "js": [
                "assets\/jquery.min.js",
                "assets\/jsonlint.js",
                "js\/redmine.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/jquery.min.js",
        "assets\/ZeroClipboard.js",
        "assets\/ZeroClipboard.swf",
        "js\/copy.js",
        "assets\/font-awesome\/fonts\/fontawesome-webfont.eot",
        "assets\/font-awesome\/fonts\/fontawesome-webfont.woff",
        "assets\/font-awesome\/fonts\/fontawesome-webfont.ttf"
    ]
}