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 |
电子邮箱 | [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" ] } |