PR Helper

Keep track your PRs

What is PR Helper?

PR Helper is a Chrome extension developed by https://benjaminkwhite.ca, and its main feature is "Keep track your PRs".

Extension Screenshots

screenshot

Download PR Helper Extension CRX File

Download PR Helper 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

                        PR Helper is a Chrome extension that helps you view and manage all of your pull requests.                    

Extension Basic Information

Name PR Helper PR Helper
ID jaogoaloliabokkjfmjpbnnhaeooaoem
Official URL https://chromewebstore.google.com/detail/pr-helper/jaogoaloliabokkjfmjpbnnhaeooaoem
Description Keep track your PRs
File Size 253 KB
Installation Count 31
Current Version 10
Last Updated 2020-03-16
Publish Date 2020-03-16
Rating 5.00/5 Total 6 Ratings
Developer https://benjaminkwhite.ca
Email [email protected]
Payment Type free
Extension Website https://github.com/benjaminkwhite/PR-Helper
Help Page URL https://github.com/benjaminkwhite/PR-Helper
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PR Helper",
    "description": "Keep track your PRs",
    "homepage_url": "https:\/\/github.com\/benjaminkwhite\/PR-Helper",
    "manifest_version": 2,
    "minimum_chrome_version": "46",
    "version": "10",
    "icons": {
        "128": "images\/icon-128.png",
        "16": "images\/icon-128.png",
        "48": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/addButton.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "alarms",
        "storage"
    ],
    "options_page": "options.html",
    "optional_permissions": [
        "notifications"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/api.js",
            "js\/main.js",
            "js\/underscore-min.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon-128.png",
        "default_popup": "popup.html",
        "default_title": "PR Helper"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}