Pekama patent counter for Chrome

this extension delivers IP information straight into your chrome browser

Co to jest Pekama patent counter for Chrome?

Pekama patent counter for Chrome to rozszerzenie Chrome opracowane przez Pekama, a jego główną funkcją jest „this extension delivers IP information straight into your chrome browser”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Pekama patent counter for Chrome

Pobierz pliki rozszerzeń Pekama patent counter for Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Pekama patent counter for Chrome shows patent information for a company simply by clicking its name. This includes a total number of patents, patent families, countries of filing and main inventors. Now also delivers patent information directly to LinkedIn.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pekama patent counter for Chrome Pekama patent counter for Chrome
ID eaeiebfdimafbknacdhbfhdhpfdhnbee
Oficjalny URL https://chrome.google.com/webstore/detail/pekama-patent-counter-for/eaeiebfdimafbknacdhbfhdhpfdhnbee
Opis this extension delivers IP information straight into your chrome browser
Rozmiar pliku 55.99 KB
Liczba instalacji 34
Aktualna Wersja 1.17
Ostatnia Aktualizacja 2019-04-25
Data Publikacji 2019-04-25
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper Pekama
Typ Płatności free
Strona Rozszerzenia https://pekama.com
Adres URL Strony Pomocy https://pekama.com
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pekama patent counter for Chrome",
    "version": "1.17",
    "description": "this extension delivers IP information straight into your chrome browser",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.linkedin.com\/*",
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "linkdInContentScript.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "storage"
    ]
}