Better Source

This extension reformats the Seattle Schools website "The Source". It's unofficial so don't contact Seattle Schools if its broken.

Что такое Better Source?

Better Source - это расширение Chrome, разработанное Sawyer and Eugene, и его основная функция - "This extension reformats the Seattle Schools website "The Source". It's unofficial so don't contact Seattle Schools if its broken.".

Снимки экрана расширения

Скачать файл CRX расширения Better Source

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

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

                                            

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

Название Better Source Better Source
ID iddnkgfnmijjllldlaajnapfcpbealgm
Официальный URL https://chromewebstore.google.com/detail/better-source/iddnkgfnmijjllldlaajnapfcpbealgm
Описание This extension reformats the Seattle Schools website "The Source". It's unofficial so don't contact Seattle Schools if its broken.
Размер файла 514 KB
Количество установок 12
Текущая Версия 1.8
Последнее Обновление 2019-02-12
Дата публикации 2019-02-12
Рейтинг 4.88/5 Всего 8 оценок
Разработчик Sawyer and Eugene
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Source",
    "description": "This extension reformats the Seattle Schools website \"The Source\". It's unofficial so don't contact Seattle Schools if its broken.",
    "version": "1.8",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ps.seattleschools.org\/*"
            ],
            "js": [
                "reformat.js"
            ]
        }
    ]
}