Pekama patent counter for Chrome

this extension delivers IP information straight into your chrome browser

Что такое Pekama patent counter for Chrome?

Pekama patent counter for Chrome - это расширение Chrome, разработанное Pekama, и его основная функция - "this extension delivers IP information straight into your chrome browser".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Pekama patent counter for Chrome

Скачайте файлы расширений Pekama patent counter for Chrome в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Pekama patent counter for Chrome Pekama patent counter for Chrome
ID eaeiebfdimafbknacdhbfhdhpfdhnbee
Официальный URL https://chrome.google.com/webstore/detail/pekama-patent-counter-for/eaeiebfdimafbknacdhbfhdhpfdhnbee
Описание this extension delivers IP information straight into your chrome browser
Размер файла 55.99 KB
Количество установок 34
Текущая Версия 1.17
Последнее Обновление 2019-04-25
Дата публикации 2019-04-25
Рейтинг 4.00/5 Всего 1 оценок
Разработчик Pekama
Тип оплаты free
Официальный сайт расширения https://pekama.com
URL страницы помощи https://pekama.com
Поддерживаемые языки 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"
    ]
}