Hide Files From Bitbucket PR
Hide irrelevant files from Bitbucket pull requests.
Hide Files From Bitbucket PRとは何ですか?
Hide Files From Bitbucket PRはgabin.aurecheによって開発されたChromeの拡張機能で、その主な機能は「Hide irrelevant files from Bitbucket pull requests.」です。
拡張機能のスクリーンショット
Hide Files From Bitbucket PR拡張機能のCRXファイルをダウンロード
Hide Files From Bitbucket PR拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension lets you create rules to hide files from Bitbucket pull requests. You can create glob-like rules for a given project and/or user.
拡張機能の基本情報
名前 | |
ID | jkndmdikjlefnimdlpmoembjkppanpaf |
公式URL | https://chromewebstore.google.com/detail/hide-files-from-bitbucket/jkndmdikjlefnimdlpmoembjkppanpaf |
説明 | Hide irrelevant files from Bitbucket pull requests. |
ファイルサイズ | 79.13 KB |
インストール数 | 41 |
現在のバージョン | 1.2.0 |
最終更新日 | 2016-12-01 |
公開日 | 2016-12-01 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | gabin.aureche |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Zhouzi/hide-files-from-bitbucket-pr |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Files From Bitbucket PR", "description": "Hide irrelevant files from Bitbucket pull requests.", "version": "1.2.0", "manifest_version": 2, "permissions": [ "storage" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon-40.png" }, "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/*\/pull-requests\/*" ], "js": [ "dist\/content.js" ] } ], "options_page": "options.html" } |