Pastebin Raw Text

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

Co to jest Pastebin Raw Text?

Pastebin Raw Text to rozszerzenie Chrome opracowane przez Jonathan Perkin, a jego główną funkcją jest „Redirect requests for pastebin.com paste URLs to the raw text version”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Pastebin Raw Text

Pobierz pliki rozszerzeń Pastebin Raw Text w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pastebin Raw Text Pastebin Raw Text
ID madpgppmbhecemnaicfpkokbookighmg
Oficjalny URL https://chromewebstore.google.com/detail/pastebin-raw-text/madpgppmbhecemnaicfpkokbookighmg
Opis Redirect requests for pastebin.com paste URLs to the raw text version
Rozmiar pliku 9.23 KB
Liczba instalacji 841
Aktualna Wersja 1.6
Ostatnia Aktualizacja 2017-08-26
Data Publikacji 2017-08-26
Ocena 4.75/5 Łącznie 8 Oceny
Deweloper Jonathan Perkin
Typ Płatności free
Strona Rozszerzenia https://github.com/jperkin/pastebin-raw-text
Obsługiwane Języki 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\/*"
    ]
}