Pastebin Raw Text

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

Pastebin Raw Text là gì?

Pastebin Raw Text là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Perkin, và tính năng chính của nó là "Redirect requests for pastebin.com paste URLs to the raw text version".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pastebin Raw Text

Tải xuống các tệp mở rộng Pastebin Raw Text dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pastebin Raw Text Pastebin Raw Text
ID madpgppmbhecemnaicfpkokbookighmg
URL Chính Thức https://chromewebstore.google.com/detail/pastebin-raw-text/madpgppmbhecemnaicfpkokbookighmg
Mô tả Redirect requests for pastebin.com paste URLs to the raw text version
Kích Thước Tệp 9.23 KB
Số Lần Cài Đặt 841
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2017-08-26
Ngày Phát Hành 2017-08-26
Đánh Giá 4.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Jonathan Perkin
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jperkin/pastebin-raw-text
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}