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 |
| Eメール | [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
} | |