Bitbucket Syntax Highlighting
Syntax highlighting for Bitbucket pull requests
What is Bitbucket Syntax Highlighting?
Bitbucket Syntax Highlighting is a Chrome extension developed by aidan.do.extensions, and its main feature is "Syntax highlighting for Bitbucket pull requests".
Extension Screenshots
Download Bitbucket Syntax Highlighting Extension CRX File
Download Bitbucket Syntax Highlighting 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
Review pull requests on Bitbucket with colour. Open source project at https://github.com/REslim30/bitbucket-syntax-highlighting.
Extension Basic Information
Name | Bitbucket Syntax Highlighting |
ID | leaoiajnfhddnijhdljkkdjiajengokn |
Official URL | https://chromewebstore.google.com/detail/bitbucket-syntax-highligh/leaoiajnfhddnijhdljkkdjiajengokn |
Description | Syntax highlighting for Bitbucket pull requests |
File Size | 35.96 KB |
Installation Count | 125 |
Current Version | 0.0.5 |
Last Updated | 2023-03-16 |
Publish Date | 2022-10-05 |
Rating | 4.50/5 Total 2 Ratings |
Developer | aidan.do.extensions |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bitbucket Syntax Highlighting", "description": "Syntax highlighting for Bitbucket pull requests", "version": "0.0.5", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*" ], "js": [ "content-script-flag.js", "wait-for-element.js", "prism.js", "main.js" ], "css": [ "prism.css" ] } ], "permissions": [], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |