Hide Files From Bitbucket PR

Hide irrelevant files from Bitbucket pull requests.

What is Hide Files From Bitbucket PR?

Hide Files From Bitbucket PR is a Chrome extension developed by gabin.aureche, and its main feature is "Hide irrelevant files from Bitbucket pull requests.".

Extension Screenshots

screenshot

Download Hide Files From Bitbucket PR Extension CRX File

Download Hide Files From Bitbucket PR 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

                        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.                    

Extension Basic Information

Name Hide Files From Bitbucket PR Hide Files From Bitbucket PR
ID jkndmdikjlefnimdlpmoembjkppanpaf
Official URL https://chromewebstore.google.com/detail/hide-files-from-bitbucket/jkndmdikjlefnimdlpmoembjkppanpaf
Description Hide irrelevant files from Bitbucket pull requests.
File Size 79.13 KB
Installation Count 41
Current Version 1.2.0
Last Updated 2016-12-01
Publish Date 2016-12-01
Rating 5.00/5 Total 2 Ratings
Developer gabin.aureche
Email [email protected]
Payment Type free
Extension Website https://github.com/Zhouzi/hide-files-from-bitbucket-pr
Supported Languages 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"
}