UUID Finder
This extension will automatically display the UUID at the top of the page.
Что такое UUID Finder?
UUID Finder - это расширение Chrome, разработанное Professor Premium, и его основная функция - "This extension will automatically display the UUID at the top of the page.".
Снимки экрана расширения
Скачать файл CRX расширения UUID Finder
Скачайте файлы расширений UUID Finder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension will automatically filter the page source code for Chegg URLs and display the UUID at the top of the page. You could inspect Chegg URLs and hit CTRL+F to find the UUID. This extension simply automates that. It does not show answer or anything that violates Chegg TOS.
Основная информация о расширении
Название | UUID Finder |
ID | hdenpcfifhgoabfkmikpfbgoldfnddjk |
Официальный URL | https://chromewebstore.google.com/detail/uuid-finder/hdenpcfifhgoabfkmikpfbgoldfnddjk |
Описание | This extension will automatically display the UUID at the top of the page. |
Размер файла | 16.24 KB |
Количество установок | 1,072 |
Текущая Версия | 0.0.3 |
Последнее Обновление | 2021-10-27 |
Дата публикации | 2021-10-22 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Professor Premium |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/gNabeen/UUID-Finder/ |
URL страницы политики конфиденциальности | https://www.chegg.com/privacypolicy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UUID Finder", "version": "0.0.3", "manifest_version": 2, "description": "This extension will automatically display the UUID at the top of the page.", "homepage_url": "http:\/\/www.professorbot.me", "icons": { "16": "icons\/icon-19.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "default_locale": "en", "browser_action": { "default_icon": "icons\/icon-19.png", "default_title": "UUID Finder", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "https:\/\/www.chegg.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.chegg.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |