Bitbucket PR Spell Checker
Perform spell checking on Bitbucket pull requests.
Bitbucket PR Spell Checker là gì?
Bitbucket PR Spell Checker là một tiện ích mở rộng Chrome được phát triển bởi ryota-abe, và tính năng chính của nó là "Perform spell checking on Bitbucket pull requests.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bitbucket PR Spell Checker
Tải xuống các tệp mở rộng Bitbucket PR Spell Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bitbucket PR Spell Checker |
ID | klefioohpconbmenpnebjjkolkodobnk |
URL Chính Thức | https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk |
Mô tả | Perform spell checking on Bitbucket pull requests. |
Kích Thước Tệp | 346 KB |
Số Lần Cài Đặt | 67 |
Phiên Bản Hiện Tại | 0.6.0 |
Cập Nhật Lần Cuối | 2023-04-30 |
Ngày Phát Hành | 2021-12-28 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | ryota-abe |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/ryota-abe/bitbucket_pr_spell_checker |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |