BBCodePaste

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

ما هو BBCodePaste؟

BBCodePaste هو إضافة Chrome تم تطويرها بواسطة David J.، والميزة الرئيسية لها هي "Add a context menu to paste HTML formatted clipboard text as BBCode.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة BBCodePaste

قم بتنزيل ملفات الامتداد BBCodePaste بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}