Pekama patent counter for Chrome

this extension delivers IP information straight into your chrome browser

Vad är Pekama patent counter for Chrome?

Pekama patent counter for Chrome är en Chrome-tillägg utvecklad av Pekama, och dess huvudfunktion är "this extension delivers IP information straight into your chrome browser".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Pekama patent counter for Chrome-förlängningens CRX-fil

Ladda ner Pekama patent counter for Chrome-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Pekama patent counter for Chrome Pekama patent counter for Chrome
ID eaeiebfdimafbknacdhbfhdhpfdhnbee
Officiell webbadress https://chrome.google.com/webstore/detail/pekama-patent-counter-for/eaeiebfdimafbknacdhbfhdhpfdhnbee
Beskrivning this extension delivers IP information straight into your chrome browser
Filstorlek 55.99 KB
Antal Installationer 34
Aktuell Version 1.17
Senast Uppdaterad 2019-04-25
Publiceringsdatum 2019-04-25
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare Pekama
Betalningssätt free
Tilläggswebbplats https://pekama.com
Hjälpsida URL https://pekama.com
Stödda Språk 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"
    ]
}