Mastering Physics Auto Login
Automatically logs into the Mastering Physics website.
Что такое Mastering Physics Auto Login?
Mastering Physics Auto Login - это расширение Chrome, разработанное Karl Wang, и его основная функция - "Automatically logs into the Mastering Physics website.".
Снимки экрана расширения
Скачать файл CRX расширения Mastering Physics Auto Login
Скачайте файлы расширений Mastering Physics Auto Login в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | Mastering Physics Auto Login |
ID | kdccjcoklopnidckocldkgodcdnebnjf |
Официальный URL | https://chromewebstore.google.com/detail/mastering-physics-auto-lo/kdccjcoklopnidckocldkgodcdnebnjf |
Описание | Automatically logs into the Mastering Physics website. |
Размер файла | 10.67 KB |
Количество установок | 21 |
Текущая Версия | 1.0 |
Последнее Обновление | 2017-02-01 |
Дата публикации | 2017-01-31 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Karl Wang |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mastering Physics Auto Login", "description": "Automatically logs into the Mastering Physics website.", "version": "1.0", "author": "Karl Wang", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.masteringphysics.com\/*" ], "css": [], "js": [ "work.js" ], "run_at": "document_idle" } ], "options_ui": { "page": "options.html" }, "options_page": "options.html", "permissions": [ "http:\/\/www.masteringphysics.com\/", "storage" ] } |