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
公式URL 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
Eメール [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"
            ]
        }
    ]
}