BBCodePaste

Add a context menu to paste HTML formatted clipboard text as BBCode.

BBCodePaste là gì?

BBCodePaste là một tiện ích mở rộng Chrome được phát triển bởi David J., và tính năng chính của nó là "Add a context menu to paste HTML formatted clipboard text as BBCode.".

Ả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 BBCodePaste

Tải xuống các tệp mở rộng BBCodePaste 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

                        Adds a context menu to paste content from the clipboard which converts HTML Formatted Text to BBCode.

Useful to paste formatted text into web-forum software such as phpBB.

Source code available on github. https://github.com/jeske/BBCodePaste                    

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

Tên BBCodePaste BBCodePaste
ID gendnhpciglkoaccpighggnohmmogfnp
URL Chính Thức https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp
Mô tả Add a context menu to paste HTML formatted clipboard text as BBCode.
Kích Thước Tệp 8.61 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2017-05-02
Ngày Phát Hành 2017-05-02
Đánh Giá 2.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển David J.
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BBCodePaste",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Add a context menu to paste HTML formatted clipboard text as BBCode.",
    "permissions": [
        "contextMenus",
        "tabs",
        "clipboardRead"
    ],
    "icons": {
        "16": "bbcodepasteicon.png",
        "48": "bbcodepasteicon.png",
        "128": "bbcodepasteicon.png"
    },
    "background": {
        "scripts": [
            "bbcodepaste.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}