Redmine Helper

This extension will help to work with your Redmine issues without need to open Redmine

Τι είναι το Redmine Helper;

Το Redmine Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kos-techblog.blogspot.com, και η κύρια λειτουργία του είναι "This extension will help to work with your Redmine issues without need to open Redmine".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Redmine Helper

Λήψη αρχείων επέκτασης Redmine Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This plugin will notify you of the change of your Redmine issues. And give ability to work with them. 
Change Status, Type, Done percentage. 
Adding comments to issues. 
Creating new issues.
And track time you spent on issues.
It requires Redmine 1.3.0 or later.

To start working with this extension (after installation) go to the options page and enter your Redmine URL and Api Access Key (Could be found into your Redmine profile).

For now this extension is under development and lot of new features will be added very soon. 

Changelog
---------------------------------
2.0.0 (28-Oct-2013)
    - Moved to new version of Twitter Bootstrap (v3)
    - Lots of core fixes
    - Fixed list of project
    - Fixed creation of new project
    - Fixed minor issues
    - Added priority field to list of issues
    - Fixed Redmine URL + port issues
    - Lot of UI updates
1.7.0 (25-Apr-2013)
    - Time synchronization with Redmine
    - Ability to add comments to time entry
    - "Mark as read" fix
    - 

1.6.8 (8-Apr-2013)
    - Lot of core fixes

1.6.6 (11-Mar-2013)
    - Updated storage location
    - Major code enchantments
    - Added time tracking ability 
    - List of available projects
    - UI enchantments 

1.6.0 (15-Feb-2013)
    - Updated Twitter Bootstrap to version 2.3
    - Added ChiliProject support
    - Updated UI
    - Latest news
    - Code optimization and stability improvements

1.5.6 (17-Dec-2012)
    - Stability improvements
    - Now in Issue details attachments could be downloaded from History tab
    - Bug fixes

1.5.2 (15-Dec-2012)
    - Ability to collapse/expand history items in issues details
    - Now extension also loads issues you watching into Redmine
    - Bug fixes

1.4.1 (13-Dec-2012)
   - Error handling into create & update issues
   - Core stability improvement

1.2 (1-Dec-2012)
    - Stability update
    - Fixed issue statuses loading
    - Minor bug fixes

1.1 (30-Nov-2012)
    - Code & stability improvements
    - Remove unused code

1.0 (28-Nov-2012)
    - Create new issue from selected text (Context menu)
    - Hints + disable hints in options
    - Options code optimization
    - Minor UI optimization

0.9.9 (23-Nov-2012)
    - Attach file to issue
    - Attachment history parsing
    - Stability improvements
    - V8 code optimazation

0.9.8 (20-Nov-2012)
    - Added "Issue list options"

0.9.7 (19-Nov-2012)
    - Added assignee field into Create issue
    - Core fixes                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Redmine Helper Redmine Helper
ID pieialbeacphlakbcihifblpinjpdhlb
Επίσημο URL https://chromewebstore.google.com/detail/redmine-helper/pieialbeacphlakbcihifblpinjpdhlb
Περιγραφή This extension will help to work with your Redmine issues without need to open Redmine
Μέγεθος Αρχείου 230 KB
Αριθμός Εγκαταστάσεων 791
Τρέχουσα Έκδοση 2.0.1
Τελευταία Ενημέρωση 2013-10-27
Ημερομηνία Δημοσίευσης 2013-10-27
Αξιολόγηση 4.52/5 Συνολικά 27 Αξιολογήσεις
Προγραμματιστής https://kos-techblog.blogspot.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redmine Helper",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "This extension will help to work with your Redmine issues without need to open Redmine",
    "minimum_chrome_version": "22",
    "icons": {
        "16": "icon\/icon-16.png",
        "48": "icon\/icon-48.png",
        "128": "icon\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon\/icon-16.png",
        "default_title": "Redmine Issue Tracker"
    },
    "background": {
        "scripts": [
            "js\/bg_base.js",
            "js\/config.js",
            "js\/redmine\/projects.js",
            "js\/redmine\/timeline.js",
            "js\/redmine\/issues.js",
            "js\/redmine\/users.js",
            "js\/redmine\/news.js",
            "js\/lib\/redmine_api.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms",
        "tabs",
        "notifications",
        "contextMenus",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "icon\/icon-48.png"
    ]
}