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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}