Factorial+

Unofficial extension that aims to add some little useful features to factorialhr.com

Factorial+란 무엇입니까?

Factorial+은(는) Josep Marí에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial extension that aims to add some little useful features to factorialhr.com"입니다.

확장 프로그램 스크린샷

screenshot

Factorial+ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features
    Clock In:
        Hide all the weeks except the current one.
        Display a summary row for each week and month.


https://github.com/xusoo/factorial-plus-extension                    

확장 프로그램 기본 정보

이름 Factorial+ Factorial+
ID eglhnnloiefgebiklijhfjmehnkehofe
공식 URL https://chromewebstore.google.com/detail/factorial+/eglhnnloiefgebiklijhfjmehnkehofe
설명 Unofficial extension that aims to add some little useful features to factorialhr.com
파일 크기 65.31 KB
설치 횟수 83
현재 버전 1.0.3
최근 업데이트 2022-09-19
출시 날짜 2020-04-28
평점 5.00/5 총 1 개의 평점
개발자 Josep Marí
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/xusoo/factorial-plus-extension
지원되는 언어 en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Factorial+",
    "version": "1.0.3",
    "description": "Unofficial extension that aims to add some little useful features to factorialhr.com",
    "author": "Josep Mar\u00ed",
    "default_locale": "en",
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "permissions": [
        "*:\/\/*.factorialhr.com\/*",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.factorialhr.com\/*"
            ],
            "js": [
                "lib\/moment.min.js",
                "lib\/jquery-3.4.1.min.js",
                "src\/utils\/module-utils.js",
                "src\/utils\/date-utils.js",
                "src\/module-loader.js",
                "src\/modules\/add-calendar-info.js",
                "src\/modules\/week-totals.js",
                "src\/modules\/show-only-current-week.js"
            ],
            "css": [
                "styles\/variables.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "styles\/*"
    ],
    "background": {
        "scripts": [
            "background\/tab-listener.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{1e062ace-ba50-41f2-b66d-b156b00bb03a}"
        }
    }
}