Bitbucket PR Spell Checker

Perform spell checking on Bitbucket pull requests.

What is Bitbucket PR Spell Checker?

Bitbucket PR Spell Checker is a Chrome extension developed by ryota-abe, and its main feature is "Perform spell checking on Bitbucket pull requests.".

Extension Screenshots

screenshot
screenshot

Download Bitbucket PR Spell Checker Extension CRX File

Download Bitbucket PR Spell Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bitbucket PR Spell Checker Bitbucket PR Spell Checker
ID klefioohpconbmenpnebjjkolkodobnk
Official URL https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk
Description Perform spell checking on Bitbucket pull requests.
File Size 346 KB
Installation Count 67
Current Version 0.6.0
Last Updated 2023-04-30
Publish Date 2021-12-28
Rating 5.00/5 Total 1 Ratings
Developer ryota-abe
Email [email protected]
Payment Type free
Help Page URL https://github.com/ryota-abe/bitbucket_pr_spell_checker
Supported Languages 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"
    ]
}