Mastering Physics Auto Login

Automatically logs into the Mastering Physics website.

Что такое Mastering Physics Auto Login?

Mastering Physics Auto Login - это расширение Chrome, разработанное Tristan Rice, и его основная функция - "Automatically logs into the Mastering Physics website.".

Скачать файл CRX расширения Mastering Physics Auto Login

Скачайте файлы расширений Mastering Physics Auto Login в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Automatically log into the Mastering Physics website.                    

Основная информация о расширении

Название Mastering Physics Auto Login Mastering Physics Auto Login
ID eahnjkpbfemfepkcbocmgojmhcekpkne
Официальный URL https://chrome.google.com/webstore/detail/mastering-physics-auto-lo/eahnjkpbfemfepkcbocmgojmhcekpkne
Описание Automatically logs into the Mastering Physics website.
Размер файла 78.4 KB
Количество установок 558
Текущая Версия 0.4
Последнее Обновление 2014-02-11
Дата публикации 2014-02-11
Рейтинг 3.38/5 Всего 8 оценок
Разработчик Tristan Rice
Тип оплаты free
Официальный сайт расширения http://github.com/d4l3k/MasteringPhysicsLogin
Поддерживаемые языки 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": "0.4",
    "icons": {
        "128": "logo-uprep.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.masteringphysics.com\/*"
            ],
            "css": [],
            "js": [
                "jquery-1.10.2.min.js",
                "work.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.pearsonmylabandmastering.com\/northamerica\/masteringphysics\/"
            ],
            "css": [],
            "js": [
                "jquery-1.10.2.min.js",
                "login.js"
            ]
        }
    ],
    "options_page": "popup.html",
    "permissions": [
        "http:\/\/www.masteringphysics.com\/"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.masteringphysics.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}