OpenAir Task Search
Add a search to task selection in OpenAir
什么是OpenAir Task Search?
OpenAir Task Search是由Ayleus开发的Chrome扩展程序,该扩展的主要功能是“Add a search to task selection in OpenAir”。
扩展截图
下载OpenAir Task Search扩展crx文件
下载OpenAir Task Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The task selection box on the timesheet page is changed to include a search box to allow easier selection when the list is long.
SOURCE CODE:
https://github.com/Ayleus/OpenAir-Task-Search
PRIVACY POLICY:
https://raw.githubusercontent.com/Ayleus/OpenAir-Task-Search/master/Privacy-Policy.txt 扩展基本信息
| 名称 | |
| ID | fdnpefnaoghodgcnloehfgpakodjamkh |
| 官方URL | https://chromewebstore.google.com/detail/openair-task-search/fdnpefnaoghodgcnloehfgpakodjamkh |
| 简介 | Add a search to task selection in OpenAir |
| 文件大小 | 75.32 KB |
| 安装次数 | 22 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2020-08-31 |
| 上架时间 | 2020-02-22 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Ayleus |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Ayleus/OpenAir-Task-Search |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": "assets\/images\/icon32.png"
},
"content_scripts": [
{
"css": [
"assets\/styles\/chosen.min.css",
"assets\/styles\/main.css"
],
"js": [
"assets\/scripts\/jquery.min.js",
"assets\/scripts\/chosen.jquery.min.js",
"assets\/scripts\/main.js"
],
"matches": [
"https:\/\/www.openair.com\/timesheet.pl*",
"https:\/\/*.openair.com\/timesheet.pl*"
],
"run_at": "document_end"
}
],
"description": "Add a search to task selection in OpenAir",
"icons": {
"128": "assets\/images\/icon128.png",
"16": "assets\/images\/icon16.png",
"32": "assets\/images\/icon32.png",
"48": "assets\/images\/icon48.png"
},
"manifest_version": 2,
"name": "OpenAir Task Search",
"permissions": [],
"version": "1.0.5"
} | |