Running Redmine

Keyboard shortcuts for using Redmine faster

Running Redmineคืออะไร?

Running Redmine เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Molluzzo และคุณลักษณะหลักของมันคือ "Keyboard shortcuts for using Redmine faster"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension adds keyboard shortcuts to Redmine apps for quicker navigation and issue management.

Quickly get to any ticket by typing '/' then the ticket number then 'Enter'.

Press control+space to see a list of projects, then type the number next to the project name to go to that project.

Here is a complete list of shortcuts (when two letters are in order, type them one after the other):

Global Navigation

These shortcuts should work anywhere on your Redmine site:

- Go Home: g h
- Go to My Page: g m
- Go to Projects: g p
- Go to People: g e
- Go to Admin: g a
- Go to Official Redmine Guide: g /
- Go to Issues: g i
- Create new Project: n p
- Search: /
- Quick jump to Project: control+Space, then type the number next to the project you want

Project Navigation

These shortcuts work when you're in a project, when the URL is `~/projects/whatever/` or `~/issues/1234`:

- Create new issue in current project: n i
- Go to current project home: p h
- Go to current project activity: p a
- Go to current project issues: p i
- Go to current project news: p n
- Go to current project wiki: p w
- Go to current project settings: p s

Issue Actions

These shortcuts work on a page like `~/issues/1234`

- Edit current issue: e
- Watch current issue: w
- Copy current issue to : c
- Delete current issue: d

When creating or editing an issue:
- Create/Save issue you're editing: CMD+Enter
- Create issue and Continue (making another new issue): CMD+Shift+Enter

Formatting

These shortcuts work in the description field of issues, or when editing the wiki.

- Bold: command+b
- Underline: command+u
- Italics: command+i
- External link: command+k
- Inline Code: command+shift+2 (command+@)
- Pre block: command+shift+p                    

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

ชื่อ Running Redmine Running Redmine
ID bfegcalbohnfdcgnacofccdjkakjallk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/running-redmine/bfegcalbohnfdcgnacofccdjkakjallk
คำอธิบาย Keyboard shortcuts for using Redmine faster
ขนาดไฟล์ 25.66 KB
จำนวนการติดตั้ง 20
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2016-06-06
วันที่เผยแพร่ 2016-06-06
ผู้พัฒนา Paul Molluzzo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/paulmolluzzo/running-redmine
URL หน้าช่วยเหลือ https://github.com/paulmolluzzo/running-redmine/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Running Redmine",
    "version": "1.3.0",
    "description": "Keyboard shortcuts for using Redmine faster",
    "homepage_url": "https:\/\/github.com\/paulmolluzzo\/running-redmine",
    "manifest_version": 2,
    "minimum_chrome_version": "50",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "vendor\/mousetrap.js",
                "vendor\/mousetrap-global-bind.js",
                "content.js"
            ]
        }
    ]
}