Bitbucket PR Spell Checker

Perform spell checking on Bitbucket pull requests.

O que é Bitbucket PR Spell Checker?

Bitbucket PR Spell Checker é uma extensão do Chrome desenvolvida por ryota-abe, e sua principal característica é "Perform spell checking on Bitbucket pull requests.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Bitbucket PR Spell Checker

Baixe arquivos de extensão Bitbucket PR Spell Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bitbucket PR Spell Checker Bitbucket PR Spell Checker
ID klefioohpconbmenpnebjjkolkodobnk
URL Oficial https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk
Descrição Perform spell checking on Bitbucket pull requests.
Tamanho do Arquivo 346 KB
Contagem de Instalações 67
Versão Atual 0.6.0
Última Atualização 2023-04-30
Data de Publicação 2021-12-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ryota-abe
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/ryota-abe/bitbucket_pr_spell_checker
Idiomas Suportados 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"
    ]
}