BugPopper

Chrome extension to view BugDB pages

什麼是BugPopper?

BugPopper是由Aditya Prakash開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension to view BugDB pages”。

擴展截圖

screenshot
screenshot

下載BugPopper擴展crx文件

下載BugPopper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 BugPopper BugPopper
ID moemamafnaemeponmbknajacdbkobjee
官方網址 https://chromewebstore.google.com/detail/bugpopper/moemamafnaemeponmbknajacdbkobjee
簡介 Chrome extension to view BugDB pages
檔案大小 101 KB
安裝次數 123
目前版本 1.0
更新時間 2016-06-15
上架時間 2016-06-15
評分 5.00/5 共 5 次評分
開發者 Aditya Prakash
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            ]
        }
    ]
}