Auto Highlight & Tag

Automatic highlight and tag selected items in a Patent eDossier list based on specified colours.

Was ist Auto Highlight & Tag?

Auto Highlight & Tag ist eine Chrome-Erweiterung, die von searchpuzzle38 entwickelt wurde, und ihr Hauptmerkmal ist "Automatic highlight and tag selected items in a Patent eDossier list based on specified colours.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Auto Highlight & Tag-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Highlight & Tag-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Auto Highlight & Tag Auto Highlight & Tag
ID dmmachfoknfmfnloaaohbjnaokagbcgc
Offizielle URL https://chromewebstore.google.com/detail/auto-highlight-tag/dmmachfoknfmfnloaaohbjnaokagbcgc
Beschreibung Automatic highlight and tag selected items in a Patent eDossier list based on specified colours.
Dateigröße 350 KB
Installationsanzahl 198
Aktuelle Version 1.92
Letztes Update 2023-08-13
Veröffentlichungsdatum 2019-04-08
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler searchpuzzle38
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}