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”。
扩展截图
下载Factorial+扩展crx文件
下载Factorial+扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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+ |
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}" } } } |