Bitbucket Lines Changed
Lists total number of lines changed in Bitbucket PRs
What is Bitbucket Lines Changed?
Bitbucket Lines Changed is a Chrome extension developed by Unknown, and its main feature is "Lists total number of lines changed in Bitbucket PRs".
Download Bitbucket Lines Changed Extension CRX File
Download Bitbucket Lines Changed 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
Adds an overall number of lines added/removed in Bitbucket Pull Requests.
Extension Basic Information
Name | Bitbucket Lines Changed |
ID | icfabjllcjkbbmflmkinhnpfadjdjdcj |
Official URL | https://chromewebstore.google.com/detail/bitbucket-lines-changed/icfabjllcjkbbmflmkinhnpfadjdjdcj |
Description | Lists total number of lines changed in Bitbucket PRs |
File Size | 9.05 KB |
Installation Count | 10 |
Current Version | 0.2 |
Last Updated | 2018-02-15 |
Publish Date | 2018-02-15 |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bitbucket Lines Changed", "short_name": "BLC", "version": "0.2", "manifest_version": 2, "description": "Lists total number of lines changed in Bitbucket PRs", "homepage_url": "http:\/\/www.mpelletier.net", "icons": { "32": "images\/icon32.png", "48": "images\/icon48.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/*\/pull-requests\/*" ], "css": [ "style.css" ], "js": [ "init.js" ], "run_at": "document_end" } ] } |