Bitbucket PR Spell Checker
Perform spell checking on Bitbucket pull requests.
Bitbucket PR Spell Checkerとは何ですか?
Bitbucket PR Spell Checkerはryota-abeによって開発されたChromeの拡張機能で、その主な機能は「Perform spell checking on Bitbucket pull requests.」です。
拡張機能のスクリーンショット
Bitbucket PR Spell Checker拡張機能のCRXファイルをダウンロード
Bitbucket PR Spell Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | 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" ] } |