Bitbucket PR Spell Checker

Perform spell checking on Bitbucket pull requests.

Co to jest Bitbucket PR Spell Checker?

Bitbucket PR Spell Checker to rozszerzenie Chrome opracowane przez ryota-abe, a jego główną funkcją jest „Perform spell checking on Bitbucket pull requests.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Bitbucket PR Spell Checker

Pobierz pliki rozszerzeń Bitbucket PR Spell Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bitbucket PR Spell Checker Bitbucket PR Spell Checker
ID klefioohpconbmenpnebjjkolkodobnk
Oficjalny URL https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk
Opis Perform spell checking on Bitbucket pull requests.
Rozmiar pliku 346 KB
Liczba instalacji 67
Aktualna Wersja 0.6.0
Ostatnia Aktualizacja 2023-04-30
Data Publikacji 2021-12-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper ryota-abe
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/ryota-abe/bitbucket_pr_spell_checker
Obsługiwane Języki 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"
    ]
}