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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}