Pastebin Raw Text

Redirect requests for pastebin.com paste URLs to the raw text version

Что такое Pastebin Raw Text?

Pastebin Raw Text - это расширение Chrome, разработанное Jonathan Perkin, и его основная функция - "Redirect requests for pastebin.com paste URLs to the raw text version".

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

screenshot

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

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

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

                        This extension looks for requests to http://pastebin.com/ and if the request is for a valid paste will automatically redirect the request to the raw version.  This is useful for users and developers who wish to just see the paste text without all the adverts, banner images, duplicate text and syntax highlighting.                    

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

Название Pastebin Raw Text Pastebin Raw Text
ID madpgppmbhecemnaicfpkokbookighmg
Официальный URL https://chromewebstore.google.com/detail/pastebin-raw-text/madpgppmbhecemnaicfpkokbookighmg
Описание Redirect requests for pastebin.com paste URLs to the raw text version
Размер файла 9.23 KB
Количество установок 841
Текущая Версия 1.6
Последнее Обновление 2017-08-26
Дата публикации 2017-08-26
Рейтинг 4.75/5 Всего 8 оценок
Разработчик Jonathan Perkin
Тип оплаты free
Официальный сайт расширения https://github.com/jperkin/pastebin-raw-text
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pastebin Raw Text",
    "short_name": "pastebin.txt",
    "version": "1.6",
    "description": "Redirect requests for pastebin.com paste URLs to the raw text version",
    "homepage_url": "https:\/\/github.com\/jperkin\/pastebin-raw-text",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/pastebin.com\/*"
    ]
}