BugPopper

Chrome extension to view BugDB pages

What is BugPopper?

BugPopper is a Chrome extension developed by Aditya Prakash, and its main feature is "Chrome extension to view BugDB pages".

Extension Screenshots

screenshot
screenshot

Download BugPopper Extension CRX File

Download BugPopper 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 chrome extension is for Oracle employees only! It enables Oracle employees to view bugDB descriptions for bug ID's occuring anywhere in the browser. It is a convenience tool to quickly glance at the bug's status and/or description.                    

Extension Basic Information

Name BugPopper BugPopper
ID moemamafnaemeponmbknajacdbkobjee
Official URL https://chromewebstore.google.com/detail/bugpopper/moemamafnaemeponmbknajacdbkobjee
Description Chrome extension to view BugDB pages
File Size 101 KB
Installation Count 123
Current Version 1.0
Last Updated 2016-06-15
Publish Date 2016-06-15
Rating 5.00/5 Total 5 Ratings
Developer Aditya Prakash
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BugPopper",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Chrome extension to view BugDB pages",
    "options_page": "options.html",
    "icons": {
        "16": "bug_white_bg.png",
        "48": "bug_white_bg.png",
        "128": "bug_white_bg.png"
    },
    "browser_action": {
        "default_icon": "bug_white_bg.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "",
        "contentSettings",
        "https:\/\/bug.oraclecorp.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/styles.css",
                "css\/tipped.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/tipped.js",
                "js\/jquery.highlight-5.js",
                "js\/content.js"
            ]
        }
    ]
}