fulmo

Easy ticket creation with an annotated screenshot.

Was ist fulmo?

fulmo ist eine Chrome-Erweiterung, die von opengroove entwickelt wurde, und ihr Hauptmerkmal ist "Easy ticket creation with an annotated screenshot.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

fulmo-Erweiterungs-CRX-Datei herunterladen

Laden Sie fulmo-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The extension provides easy ticket creation with an annotated screenshot.
Now, it supports Trac (*1) and Redmine (*2).

We plan to be able to send to other Issue tracking systems (e.g. MantisBT, Bugzilla, JIRA, etc...).

*1 requires http://trac-hacks.org/wiki/XmlRpcPlugin
*2 requires https://github.com/opengroove/redmine_fulmo_helper                    

Grundlegende Informationen zur Erweiterung

Name fulmo fulmo
ID nheekibbpleihmmfnagamcaonpdlodbl
Offizielle URL https://chrome.google.com/webstore/detail/fulmo/nheekibbpleihmmfnagamcaonpdlodbl
Beschreibung Easy ticket creation with an annotated screenshot.
Dateigröße 894 KB
Installationsanzahl 84
Aktuelle Version 1.0.4
Letztes Update 2013-07-23
Veröffentlichungsdatum 2013-07-23
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler opengroove
Zahlungsart free
Erweiterungswebsite http://ciklone.com/fulmo/
Hilfeseite URL http://wiki.ciklone.com/fulmo
Unterstützte Sprachen en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_fulmo_name__",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "__MSG_fulmo_description__",
    "options_page": "settings.html",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "32": "images\/icon32.png",
        "16": "images\/icon16.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19.png",
        "default_title": "__MSG_fulmo_menu_title__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/init.js",
                "scripts\/screenshot-capture.js",
                "scripts\/content.js"
            ]
        }
    ],
    "default_locale": "en",
    "permissions": [
        "tabs",
        "contextMenus",
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}