Auto Highlight & Tag
Automatic highlight and tag selected items in a Patent eDossier list based on specified colours.
什么是Auto Highlight & Tag?
Auto Highlight & Tag是由searchpuzzle38开发的Chrome扩展程序,该扩展的主要功能是“Automatic highlight and tag selected items in a Patent eDossier list based on specified colours.”。
扩展截图
下载Auto Highlight & Tag扩展crx文件
下载Auto Highlight & Tag扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Provides an easier way to view a Patent eDossier.
Automatic highlight and tag selected items in an eDossier list based on specified colours.
Supports:
* USPTO - Patent Center
* EP Register
* EPO Global Dossier
* PatentScope
* WIPO Case 扩展基本信息
| 名称 | |
| ID | dmmachfoknfmfnloaaohbjnaokagbcgc |
| 官方URL | https://chromewebstore.google.com/detail/auto-highlight-tag/dmmachfoknfmfnloaaohbjnaokagbcgc |
| 简介 | Automatic highlight and tag selected items in a Patent eDossier list based on specified colours. |
| 文件大小 | 350 KB |
| 安装次数 | 198 |
| 当前版本 | 1.92 |
| 更新时间 | 2023-08-13 |
| 上架时间 | 2019-04-08 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | searchpuzzle38 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Auto Highlight & Tag",
"version": "1.92",
"description": "Automatic highlight and tag selected items in a Patent eDossier list based on specified colours.",
"permissions": [
"storage"
],
"icons": {
"16": "inc\/icon16.png",
"32": "inc\/icon32.png",
"48": "inc\/icon48.png",
"64": "inc\/icon64.png",
"128": "inc\/icon128.png"
},
"action": {
"default_title": "Auto Highlight & Tag",
"default_popup": "popup.html",
"default_icon": {
"16": "inc\/icon16.png",
"32": "inc\/icon32.png",
"48": "inc\/icon48.png",
"64": "inc\/icon64.png",
"128": "inc\/icon128.png"
}
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"lib.js",
"uspto.js"
],
"matches": [
"https:\/\/patentcenter.uspto.gov\/*"
]
},
{
"js": [
"lib.js",
"ep.js"
],
"matches": [
"https:\/\/register.epo.org\/application*"
]
},
{
"js": [
"lib.js",
"wipo.js"
],
"matches": [
"https:\/\/www3.wipo.int\/caseportal\/dashboard*"
]
},
{
"js": [
"lib.js",
"gd.js"
],
"matches": [
"https:\/\/globaldossier.uspto.gov\/*",
"https:\/\/register.epo.org\/ipfwretrieve?*"
]
},
{
"js": [
"lib.js",
"ps.js"
],
"matches": [
"https:\/\/patentscope.wipo.int\/search\/*"
]
}
],
"manifest_version": 3
} | |