Chrome Wrangler

Annotate crbug.com bugs for easier wrangling.

Chrome Wranglerคืออะไร?

Chrome Wrangler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Annotate crbug.com bugs for easier wrangling."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Chrome Wrangler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Current functionality:

* Annotates the first Chrome version a commit hash was included in, and a popup to show how many days it's been in each channel
* Provides milestone info for M, Target, and Found In labels
* Jump to the comment that marked a bug as closed from the status info in the sidebar
* Changes the sidebar colour of security bugs, and highlights security severity
* Notes when closed security bugs might be made public by sheriffbot
* 'Edit' button which jumps to the "Add a comment and make changes" section
* Menu bar items to open all bugs in a list, copy a summary
* Shortcuts to open all bugs in a list (Command/Ctrl+Shift+O)
* Link to Mitre page for CVE labels
* Jump to the comment where a label was added
* Adds some security specific labels to label autocomplete
* Option and button to set the comment section width
* Popup confirmation for external links in comments by external people
* Provide option to not send email by default
* Quick way to add yourself to the bug's CC list

(Make sure you're signed into https://chromiumdash.appspot.com for best results)

Contact awhalley@ for support issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chrome Wrangler Chrome Wrangler
ID fhncecagheckpooehhjbbfkldjakcgkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-wrangler/fhncecagheckpooehhjbbfkldjakcgkn
คำอธิบาย Annotate crbug.com bugs for easier wrangling.
ขนาดไฟล์ 61.06 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 2.0.14
อัปเดตครั้งล่าสุด 2021-01-12
วันที่เผยแพร่ 2020-04-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Wrangler",
    "version": "2.0.14",
    "icons": {
        "16": "icons\/chromewrangler16.png",
        "48": "icons\/chromewrangler48.png",
        "128": "icons\/chromewrangler128.png"
    },
    "description": "Annotate crbug.com bugs for easier wrangling.",
    "background": {
        "persistent": false,
        "page": "background\/background.html"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "declarativeContent",
        "contextMenus",
        "storage",
        "https:\/\/clusterfuzz.com\/*",
        "https:\/\/cluster-fuzz.appspot.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bugs.chromium.org\/*"
            ],
            "js": [
                "shared\/shared.js",
                "content\/mutex.js",
                "content\/css.js",
                "content\/omahaHistory.js",
                "content\/issueInfo.js",
                "content\/pageUtils.js",
                "content\/updatePeriphery.js",
                "content\/updateComments.js",
                "content\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "injected\/parseFromPage.js",
        "injected\/addLabels.js"
    ],
    "page_action": {
        "default_icon": {
            "16": "icons\/chromewrangler16.png",
            "48": "icons\/chromewrangler48.png",
            "128": "icons\/chromewrangler128.png"
        },
        "default_title": "Chrome Bug Wrangling",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "commands": {
        "openBugsInList": {
            "suggested_key": {
                "windows": "Ctrl+Shift+O",
                "mac": "Command+Shift+O",
                "chromeos": "Ctrl+Shift+O",
                "linux": "Ctrl+Shift+O"
            },
            "description": "Open all bugs on list page"
        }
    }
}