IPqwery Crunchbase Extension
View any company's Intellectual Property directly from CrunchBase
Что такое IPqwery Crunchbase Extension?
IPqwery Crunchbase Extension - это расширение Chrome, разработанное Towergate-Onscope, и его основная функция - "View any company's Intellectual Property directly from CrunchBase".
Снимки экрана расширения
Скачать файл CRX расширения IPqwery Crunchbase Extension
Скачайте файлы расширений IPqwery Crunchbase Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The IPqwery extension (beta) automatically displays the patent and trademark holdings of any company profile on CrunchBase. View recent filings, technology summaries, and inventors within the Company. Explore individual trademark or patent details, including links to the USPTO records.
Основная информация о расширении
Название | IPqwery Crunchbase Extension |
ID | dmoncmkncmmgljookniiieakhafgninh |
Официальный URL | https://chromewebstore.google.com/detail/ipqwery-crunchbase-extens/dmoncmkncmmgljookniiieakhafgninh |
Описание | View any company's Intellectual Property directly from CrunchBase |
Размер файла | 805 KB |
Количество установок | 1,487 |
Текущая Версия | 2.4 |
Последнее Обновление | 2016-10-28 |
Дата публикации | 2016-10-28 |
Рейтинг | 2.27/5 Всего 15 оценок |
Разработчик | Towergate-Onscope |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://ipqwery.com/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IPqwery Crunchbase Extension", "description": "View any company's Intellectual Property directly from CrunchBase", "version": "2.4", "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com; object-src 'self'", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent" ], "page_action": { "default_icon": "icons\/icon-256.png", "default_popup": "popup.html" }, "icons": { "48": "icons\/icon-256.png", "64": "icons\/icon-256.png", "128": "icons\/icon-256.png", "256": "icons\/icon-256.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Shift+Ctrl+E", "mac": "Shift+Command+E", "chromeos": "Shift+Ctrl+E", "linux": "Shift+Ctrl+E" } } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |