Android Source Raw

Adds raw option for Google's android.googlesource.com code view

Что такое Android Source Raw?

Android Source Raw - это расширение Chrome, разработанное ryanjharter, и его основная функция - "Adds raw option for Google's android.googlesource.com code view".

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

screenshot
screenshot

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

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

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

                        The Android Source Raw extension allows you to view unformatted source code files at android.googlesource.com to make copying and pasting fun and easy.                    

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

Название Android Source Raw Android Source Raw
ID bilfmlekfijdkhjelnajfiganbicgkgo
Официальный URL https://chrome.google.com/webstore/detail/android-source-raw/bilfmlekfijdkhjelnajfiganbicgkgo
Описание Adds raw option for Google's android.googlesource.com code view
Размер файла 26.78 KB
Количество установок 248
Текущая Версия 1.0
Последнее Обновление 2014-12-18
Дата публикации 2014-12-18
Рейтинг 5.00/5 Всего 2 оценок
Разработчик ryanjharter
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Android Source Raw",
    "description": "Adds raw option for Google's android.googlesource.com code view",
    "version": "1.0",
    "content_security_policy": "script-src 'self' https:\/\/android.googlesource.com; object-src 'self'",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/android.googlesource.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/android.googlesource.com\/*"
            ],
            "js": [
                "ref-inject-gitiles-raw.js"
            ]
        }
    ]
}