mendoncamaria / redmine-bulk-logger

Helps to log efforts in bulk.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redmine Bulk Logger

image

Usage

  • Goto Redmine page > open console and paste the below code.
fetch("https://raw.githubusercontent.com/rayanfer32/redmine-bulk-logger/main/dist.js").then(t => t.text()).then(t => eval(t))

or

Bookmarklet Shortcut

javascript: (function(){fetch("https://raw.githubusercontent.com/rayanfer32/redmine-bulk-logger/main/dist.js").then(t => t.text()).then(t => eval(t))}())

or

Auto Inject using Tampermonkey extension

You can use tampermonkey extension to automate script injection

Configure the @match property according to your redmine website

// ==UserScript==
// @name         Redmine bulk logger
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Script to help you log efforts in bulk!
// @author       You
// @match        *://redmine.*.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=redmine.org
// @grant        none
// ==/UserScript==

(function() {
    fetch("https://raw.githubusercontent.com/rayanfer32/redmine-bulk-logger/main/dist.js").then(t => t.text()).then(js => {
        eval(js);
        closeModal();
    });

})();

Install Dependencies

npm install

Development

  • Start Live server extension
  • Run compiler npm run dev

src files for local developemnt

  • view.html
  • script.js
  • styles.css

About

Helps to log efforts in bulk.


Languages

Language:JavaScript 78.5%Language:HTML 14.2%Language:CSS 7.3%