Special Redmine customizer
1. Add custom links to redmine main menu (you can do it in extension settings) 2. Expand full project issues tree from Gantt chart
What is Special Redmine customizer?
Special Redmine customizer is a Chrome extension developed by Unknown, and its main feature is "1. Add custom links to redmine main menu (you can do it in extension settings) 2. Expand full project issues tree from Gantt chart".
Extension Screenshots
Download Special Redmine customizer Extension CRX File
Download Special Redmine customizer 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
1. Add custom links to redmine main menu (you can do it in extension settings) 2. Expand full project issues tree from Gantt chart
Extension Basic Information
Name | Special Redmine customizer |
ID | ggpobgeelefmkhdonhgkjhmgmdoiadej |
Official URL | https://chromewebstore.google.com/detail/special-redmine-customize/ggpobgeelefmkhdonhgkjhmgmdoiadej |
Description | 1. Add custom links to redmine main menu (you can do it in extension settings) 2. Expand full project issues tree from Gantt chart |
File Size | 48.73 KB |
Installation Count | 24 |
Current Version | 1.13 |
Last Updated | 2014-04-01 |
Publish Date | 2014-04-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/p36101/special_redmine_customizer_ext |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Special Redmine customizer", "version": "1.13", "icons": { "16": "raccoon_comp16.png", "48": "raccoon_comp48.png" }, "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Special Redmine customizer", "default_icon": "raccoon_comp48.png" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/rm.hsmedia.ru\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "\/injected.js" ], "options_page": "options.html" } |