buildo's GitHub workflow extension
Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…
buildo's GitHub workflow extensionとは何ですか?
buildo's GitHub workflow extensionはgabrieleによって開発されたChromeの拡張機能で、その主な機能は「Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…」です。
拡張機能のスクリーンショット
buildo's GitHub workflow extension拡張機能のCRXファイルをダウンロード
buildo's GitHub workflow extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | buildo's GitHub workflow extension |
ID | chkjadbenkogbdkdjeckjfbbnjpmbelm |
公式URL | https://chromewebstore.google.com/detail/buildos-github-workflow-e/chkjadbenkogbdkdjeckjfbbnjpmbelm |
説明 | Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline… |
ファイルサイズ | 227 KB |
インストール数 | 29 |
現在のバージョン | 1.15.8 |
最終更新日 | 2021-01-31 |
公開日 | 2020-05-11 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | gabriele |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://buildo.io |
対応言語 | 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\/*" ] } |