BugPopper

Chrome extension to view BugDB pages

BugPopperคืออะไร?

BugPopper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aditya Prakash และคุณลักษณะหลักของมันคือ "Chrome extension to view BugDB pages"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BugPopper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}