Redmine Timer

The Redmine time tracking button for Firefox and Chrome. Icons made by Freepik from www.flaticon.com.

Redmine Timerคืออะไร?

Redmine Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fuzzymazoid และคุณลักษณะหลักของมันคือ "The Redmine time tracking button for Firefox and Chrome. Icons made by Freepik from www.flaticon.com."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Redmine Timer

ดาวน์โหลดไฟล์ส่วนขยาย Redmine Timer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds a customize-able list of projects so you can easily start/stop timing your work. Uses the standard Redmine time tracking features.

This tool gives you a few handy features to help track time in Redmine.

*A button in your browser to start/stop time tracking*
If you're on a Redmine issue page when you start tracking, it tracks time for the issue. If you're inside a project page (but not inside an issue), it tracks time to the project. You can also use a keyboard shortcut (Alt + R) to start/stop timing.

*A page full of your projects*
Some people don't always work on Redmine issues (like account managers) -- they need an easy way to jump from project to project and track time. Right-click anywhere on any page and choose "Show Redmine Timer Buttons" from the context menu.

When you open the list, you'll see a touch-friendly list of those projects. I move this window onto my laptop screen (as opposed to my main external monitor) so I can simply touch the one I want to time.

*Bugs*
Instead of leaving a bad review, which will crush my soul, please add bug reports here: https://bitbucket.org/jprc8/redmine-timer-for-browsers/issues.

*Notes*
My company uses this extension and it hasn't set anything on fire yet. That said, there is ABSOLUTELY NO WARRANTY expressed nor implied. Use at your own risk. Don't call me if it somehow doesn't work, deletes all of Redmine, terrorizes your cat, etc.

*Additional Credits*
Icons made by Freepik from http://www.flaticon.com. Licensed by CC BY 3.0
http://www.flaticon.com/authors/freepik

Hosted Redmine used for testing outside my private environment: http://www.hostedredmine.com/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Redmine Timer Redmine Timer
ID jblkeaimocabbaocnhbhbmoollkjmcil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/redmine-timer/jblkeaimocabbaocnhbhbmoollkjmcil
คำอธิบาย The Redmine time tracking button for Firefox and Chrome. Icons made by Freepik from www.flaticon.com.
ขนาดไฟล์ 69.38 KB
จำนวนการติดตั้ง 437
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2019-12-24
วันที่เผยแพร่ 2019-12-24
คะแนน 5.00/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา fuzzymazoid
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redmine Timer",
    "version": "1.0.5",
    "description": "The Redmine time tracking button for Firefox and Chrome. Icons made by Freepik from www.flaticon.com.",
    "author": "Jeff Robertson",
    "homepage_url": "https:\/\/bitbucket.org\/jprc8\/redmine-timer-for-browsers\/overview",
    "icons": {
        "16": "icons\/timer16.png",
        "48": "icons\/timer48.png",
        "96": "icons\/timer96.png",
        "128": "icons\/timer128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/timer16.png",
            "48": "icons\/timer48.png"
        },
        "default_title": "Click to start recording"
    },
    "options_ui": {
        "page": "options.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+R"
            }
        }
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "notifications",
        "alarms"
    ],
    "optional_permissions": [
        "*:\/\/*\/*"
    ]
}