Bitbucket PR Spell Checker

Perform spell checking on Bitbucket pull requests.

ما هو Bitbucket PR Spell Checker؟

Bitbucket PR Spell Checker هو إضافة Chrome تم تطويرها بواسطة ryota-abe، والميزة الرئيسية لها هي "Perform spell checking on Bitbucket pull requests.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Bitbucket PR Spell Checker

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

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

                        This extension performs a spell check on the Bitbucket pull request page.
Words that are suspected of being misspelled will be displayed at the top of each file.
Clicking on the displayed word will display a waved underline on the corresponding line.                    

معلومات أساسية عن التمديد

الاسم Bitbucket PR Spell Checker Bitbucket PR Spell Checker
ID klefioohpconbmenpnebjjkolkodobnk
عنوان URL الرسمي https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk
الوصف Perform spell checking on Bitbucket pull requests.
حجم الملف 346 KB
عدد التثبيتات 67
النسخة الحالية 0.6.0
آخر تحديث 2023-04-30
تاريخ النشر 2021-12-28
تقييم 5.00/5 مجموع تقييمات 1
المطور ryota-abe
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/ryota-abe/bitbucket_pr_spell_checker
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bitbucket PR Spell Checker",
    "short_name": "SpellChecker",
    "version": "0.6.0",
    "description": "Perform spell checking on Bitbucket pull requests.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon48.png",
        "default_popup": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/*\/pull-requests\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}