Pastebin Raw Text

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

Was ist Pastebin Raw Text?

Pastebin Raw Text ist eine Chrome-Erweiterung, die von Jonathan Perkin entwickelt wurde, und ihr Hauptmerkmal ist "Redirect requests for pastebin.com paste URLs to the raw text version".

Erweiterungsscreenshots

screenshot

Pastebin Raw Text-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pastebin Raw Text-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Pastebin Raw Text Pastebin Raw Text
ID madpgppmbhecemnaicfpkokbookighmg
Offizielle URL https://chromewebstore.google.com/detail/pastebin-raw-text/madpgppmbhecemnaicfpkokbookighmg
Beschreibung Redirect requests for pastebin.com paste URLs to the raw text version
Dateigröße 9.23 KB
Installationsanzahl 841
Aktuelle Version 1.6
Letztes Update 2017-08-26
Veröffentlichungsdatum 2017-08-26
Bewertung 4.75/5 Insgesamt 8 Bewertungen
Entwickler Jonathan Perkin
Zahlungsart free
Erweiterungswebsite https://github.com/jperkin/pastebin-raw-text
Unterstützte Sprachen 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\/*"
    ]
}