BBCodePaste

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

BBCodePasteとは何ですか?

BBCodePasteはDavid J.によって開発されたChromeの拡張機能で、その主な機能は「Add a context menu to paste HTML formatted clipboard text as BBCode.」です。

拡張機能のスクリーンショット

screenshot

BBCodePaste拡張機能のCRXファイルをダウンロード

BBCodePaste拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 BBCodePaste BBCodePaste
ID gendnhpciglkoaccpighggnohmmogfnp
公式URL https://chrome.google.com/webstore/detail/bbcodepaste/gendnhpciglkoaccpighggnohmmogfnp
説明 Add a context menu to paste HTML formatted clipboard text as BBCode.
ファイルサイズ 8.61 KB
インストール数 68
現在のバージョン 1.3
最終更新日 2017-05-02
公開日 2017-05-02
評価 2.75/5 合計 4 レビュー
開発者 David J.
支払い方法 free
対応言語 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"
            ]
        }
    ]
}