BugPopper

Chrome extension to view BugDB pages

Apa itu BugPopper?

BugPopper adalah ekstensi Chrome yang dikembangkan oleh Aditya Prakash, dan fitur utamanya adalah "Chrome extension to view BugDB pages".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi BugPopper

Unduh file ekstensi BugPopper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama BugPopper BugPopper
ID moemamafnaemeponmbknajacdbkobjee
URL Resmi https://chromewebstore.google.com/detail/bugpopper/moemamafnaemeponmbknajacdbkobjee
Deskripsi Chrome extension to view BugDB pages
Ukuran File 101 KB
Jumlah Instalasi 123
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-06-15
Tanggal Publikasi 2016-06-15
Penilaian 5.00/5 Total 5 Penilaian
Pengembang Aditya Prakash
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}