Scratch Project Profile Pictures

Adds a profile picture of the user who shared the project to scratch project pages.

Что такое Scratch Project Profile Pictures?

Scratch Project Profile Pictures - это расширение Chrome, разработанное GrannyCookies, и его основная функция - "Adds a profile picture of the user who shared the project to scratch project pages.".

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

screenshot

Скачать файл CRX расширения Scratch Project Profile Pictures

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

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

                        Simply put, this just puts the sharer's picture on project pages.
That's it.

Made by Alex Bates (aka GrannyCookies)                    

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

Название Scratch Project Profile Pictures Scratch Project Profile Pictures
ID ckkjcabehicmjhgndgpobhjkeenihdbk
Официальный URL https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk
Описание Adds a profile picture of the user who shared the project to scratch project pages.
Размер файла 39.37 KB
Количество установок 212
Текущая Версия 1.0
Последнее Обновление 2014-12-28
Дата публикации 2014-12-28
Рейтинг 3.67/5 Всего 3 оценок
Разработчик GrannyCookies
Тип оплаты free
Официальный сайт расширения http://scratch.mit.edu
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scratch Project Profile Pictures",
    "version": "1.0",
    "description": "Adds a profile picture of the user who shared the project to scratch project pages.",
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/scratch.mit.edu\/projects\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/scratch.mit.edu\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src http:\/\/scratch.mit.edu; img-src http:\/\/scratch.mit.edu"
}