buildo's GitHub workflow extension
Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…
What is buildo's GitHub workflow extension?
buildo's GitHub workflow extension is a Chrome extension developed by gabriele, and its main feature is "Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…".
Extension Screenshots
Download buildo's GitHub workflow extension Extension CRX File
Download buildo's GitHub workflow extension 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 useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline preview of issue description in pull requests
Extension Basic Information
Name | buildo's GitHub workflow extension |
ID | chkjadbenkogbdkdjeckjfbbnjpmbelm |
Official URL | https://chromewebstore.google.com/detail/buildos-github-workflow-e/chkjadbenkogbdkdjeckjfbbnjpmbelm |
Description | Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline… |
File Size | 227 KB |
Installation Count | 29 |
Current Version | 1.15.8 |
Last Updated | 2021-01-31 |
Publish Date | 2020-05-11 |
Rating | 5.00/5 Total 1 Ratings |
Developer | gabriele |
[email protected] | |
Payment Type | free |
Extension Website | http://buildo.io |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "buildo's GitHub workflow extension", "version": "1.15.8", "background": { "scripts": [ "background\/background.bundle.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/icon128.png", "default_popup": "popup\/index.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ ".\/plugin.css" ], "js": [ ".\/plugin\/plugin.bundle.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "webRequest", "storage", "https:\/\/github.com\/*" ] } |