Pastebin Raw Text

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

Vad är Pastebin Raw Text?

Pastebin Raw Text är en Chrome-tillägg utvecklad av Jonathan Perkin, och dess huvudfunktion är "Redirect requests for pastebin.com paste URLs to the raw text version".

Tilläggsskärmbilder

screenshot

Ladda ner Pastebin Raw Text-förlängningens CRX-fil

Ladda ner Pastebin Raw Text-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Pastebin Raw Text Pastebin Raw Text
ID madpgppmbhecemnaicfpkokbookighmg
Officiell webbadress https://chromewebstore.google.com/detail/pastebin-raw-text/madpgppmbhecemnaicfpkokbookighmg
Beskrivning Redirect requests for pastebin.com paste URLs to the raw text version
Filstorlek 9.23 KB
Antal Installationer 841
Aktuell Version 1.6
Senast Uppdaterad 2017-08-26
Publiceringsdatum 2017-08-26
Betyg 4.75/5 Totalt 8 Betyg
Utvecklare Jonathan Perkin
Betalningssätt free
Tilläggswebbplats https://github.com/jperkin/pastebin-raw-text
Stödda Språk 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\/*"
    ]
}