Darkmode Patents
Creates a Dark-mode user interface for Google Patents
Что такое Darkmode Patents?
Darkmode Patents - это расширение Chrome, разработанное Kaushik, и его основная функция - "Creates a Dark-mode user interface for Google Patents".
Снимки экрана расширения
Скачать файл CRX расширения Darkmode Patents
Скачайте файлы расширений Darkmode Patents в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically creates a Dark-Mode user interface for any patent that is opened in Google Patents. It is essentially an eye care extension for Intellectual Property professionals who spend their workdays reading patents. Advantages: Reduces screen blue/white light emission, Improves patent text navigation, 'Priority date' highlighted in color, Colored differentiation of Independent and Dependent claims. DarkMode Patents doesn't send any data anywhere and works locally on your browser.
Основная информация о расширении
Название | Darkmode Patents |
ID | dcbnebjhpokibmljbhonakfhcmpkcgfl |
Официальный URL | https://chromewebstore.google.com/detail/darkmode-patents/dcbnebjhpokibmljbhonakfhcmpkcgfl |
Описание | Creates a Dark-mode user interface for Google Patents |
Размер файла | 13.74 KB |
Количество установок | 51 |
Текущая Версия | 0.0.0.1 |
Последнее Обновление | 2021-06-17 |
Дата публикации | 2021-06-13 |
Разработчик | Kaushik |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Darkmode Patents", "version": "0.0.0.1", "description": "Creates a Dark-mode user interface for Google Patents", "author": "Kaushik Mitra", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png" }, "content_scripts": [ { "matches": [ "https:\/\/patents.google.com\/*", "https:\/\/google.com\/patents\/*" ], "css": [ "style.css" ] } ] } |