Pastebin Raw Text

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

Co je Pastebin Raw Text?

Pastebin Raw Text je rozšíření Chrome vyvinuté Jonathan Perkin, a jeho hlavní funkcí je „Redirect requests for pastebin.com paste URLs to the raw text version“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Pastebin Raw Text

Stáhněte si soubory rozšíření Pastebin Raw Text ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Pastebin Raw Text Pastebin Raw Text
ID madpgppmbhecemnaicfpkokbookighmg
Oficiální URL https://chromewebstore.google.com/detail/pastebin-raw-text/madpgppmbhecemnaicfpkokbookighmg
Popis Redirect requests for pastebin.com paste URLs to the raw text version
Velikost souboru 9.23 KB
Počet instalací 841
Aktuální Verze 1.6
Poslední Aktualizace 2017-08-26
Datum Vydání 2017-08-26
Hodnocení 4.75/5 Celkem 8 Hodnocení
Vývojář Jonathan Perkin
Typ Platby free
Webové stránky Rozšíření https://github.com/jperkin/pastebin-raw-text
Podporované Jazyky 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\/*"
    ]
}