Elegant API Manager
Add Client Management fields to the Elegant Themes API page. This extension simply adds a 'Client Name' and 'Client URL' field to…
Что такое Elegant API Manager?
Elegant API Manager - это расширение Chrome, разработанное SJ James, и его основная функция - "Add Client Management fields to the Elegant Themes API page. This extension simply adds a 'Client Name' and 'Client URL' field to…".
Снимки экрана расширения
Скачать файл CRX расширения Elegant API Manager
Скачайте файлы расширений Elegant API Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Add Client Management fields to the Elegant Themes API page. This extension simply adds a 'Client Name' and 'Client URL' field to your API keys. The information is saved in local storage, which means the only person who ever has access to it, is you.
Основная информация о расширении
Название | Elegant API Manager |
ID | pmdgohpkmefpmneaepdoimlamaaekmbi |
Официальный URL | https://chromewebstore.google.com/detail/elegant-api-manager/pmdgohpkmefpmneaepdoimlamaaekmbi |
Описание | Add Client Management fields to the Elegant Themes API page. This extension simply adds a 'Client Name' and 'Client URL' field to… |
Размер файла | 36.94 KB |
Количество установок | 113 |
Текущая Версия | 0.2 |
Последнее Обновление | 2018-07-21 |
Дата публикации | 2018-07-20 |
Рейтинг | 3.83/5 Всего 6 оценок |
Разработчик | SJ James |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Elegant API Manager", "version": "0.2", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.elegantthemes.com\/members-area\/api\/" ], "js": [ "jquery.js", "content.js" ], "css": [ "style.css" ] } ], "icons": { "128": "icon.png" }, "browser_action": { "default_title": "Elegant API Manager" } } |