OpenAir Reborn

OpenAir time tracking with almost no teeth pulling

OpenAir Reborn란 무엇입니까?

OpenAir Reborn은(는) Mike Crittenden에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OpenAir time tracking with almost no teeth pulling"입니다.

확장 프로그램 스크린샷

screenshot

OpenAir Reborn 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Make the OpenAir time tracker less clicky-clicky and more keyboard-focused and pretty, along the lines of something like Toggl.

- Auto-saving timesheets!
- Keyboard focused. No clicking required!
- Allows for very rapid time entry
- Timers per entry, run multiple timers at once, start timers on existing entries, etc.
- Autocompletion of projects, tasks, and days
- Add time to multiple days at once for repeating events (standups, etc.)
- Add/edit/delete time instantly, inline
- Button to toggle the old OpenAir interface at any time.
- Browser button to open your latest timesheet quickly

Source code: https://github.com/phase2/openair-reborn                    

확장 프로그램 기본 정보

이름 OpenAir Reborn OpenAir Reborn
ID ajmdofceiiflcdlclkicifcnccdgkcmb
공식 URL https://chromewebstore.google.com/detail/openair-reborn/ajmdofceiiflcdlclkicifcnccdgkcmb
설명 OpenAir time tracking with almost no teeth pulling
파일 크기 105 KB
설치 횟수 137
현재 버전 0.0.31
최근 업데이트 2016-04-19
출시 날짜 2016-04-19
평점 4.40/5 총 10 개의 평점
개발자 Mike Crittenden
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/phase2/openair-reborn
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.31",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        }
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.openair.com\/timesheet.pl*"
            ],
            "css": [
                "styles\/main.css",
                "bower_components\/chosen\/chosen.css",
                "bower_components\/angular-chosen-localytics\/chosen-spinner.css"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "bower_components\/angular\/angular.js",
                "bower_components\/chosen\/chosen.jquery.js",
                "scripts\/markup.js",
                "scripts\/timeentry.js",
                "scripts\/openair.js",
                "scripts\/timer.js",
                "bower_components\/angular-chosen-localytics\/chosen.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "views\/form.html",
        "views\/table.html",
        "bower_components\/angular\/angular.js",
        "bower_components\/angular\/angular.js.map",
        "bower_components\/jquery\/dist\/jquery.js",
        "bower_components\/jquery\/dist\/jquery.map",
        "bower_components\/chosen\/chosen.jquery.js",
        "bower_components\/angular-chosen-localytics\/chosen.js"
    ]
}