OPIS Helper
A bunch of browser hacks for Workfront and etc.
什么是OPIS Helper?
OPIS Helper是由Chima Nwanna开发的Chrome扩展程序,该扩展的主要功能是“A bunch of browser hacks for Workfront and etc.”。
扩展截图
下载OPIS Helper扩展crx文件
下载OPIS Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A bunch of browser hacks for Workfront and etc. 扩展基本信息
| 名称 | |
| ID | lcfhopgddmfhgaihdngocabaijapnpag |
| 官方URL | https://chromewebstore.google.com/detail/opis-helper/lcfhopgddmfhgaihdngocabaijapnpag |
| 简介 | A bunch of browser hacks for Workfront and etc. |
| 文件大小 | 160 KB |
| 安装次数 | 54 |
| 当前版本 | 1.11.0 |
| 更新时间 | 2019-12-23 |
| 上架时间 | 2019-12-23 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Chima Nwanna |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "OPIS Helper",
"short_name": "OPIS Extension",
"description": "A bunch of browser hacks for Workfront and etc.",
"version": "1.11.0",
"minimum_chrome_version": "38",
"permissions": [
"contextMenus",
"tabs",
"storage",
"notifications",
"nativeMessaging",
"contentSettings",
"https:\/\/oasys.opisnet.com\/*"
],
"browser_action": {
"default_icon": "assets\/logo.png",
"default_popup": "options.html"
},
"icons": {
"16": "assets\/logo.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": [
"js\/jquery.js",
"main.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/opis.attask-ondemand.com\/*",
"https:\/\/opis.my.workfront.com\/*"
],
"js": [
"js\/jquery.js",
"workfront.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/oasys.opisnet.com\/*",
"https:\/\/tst-oasys-opisnet-com.preprodopisnet.io\/*"
],
"js": [
"js\/jquery.js",
"js\/bootstrap.min.js",
"js\/moment.min.js",
"js\/clipboard.min.js",
"js\/jquery.dataTables.min.js",
"js\/datetime-moment.js",
"js\/js.cookie.js",
"oasys.js"
],
"css": [
"css\/jquery.dataTables.min.css",
"css\/dataTables.bootstrap.min.css",
"css\/oasys.css"
],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"https:\/\/oasys.opisnet.com\/*"
]
}
} | |