Domquest

Conquer the DOM.

Domquestคืออะไร?

Domquest เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nickolasburr และคุณลักษณะหลักของมันคือ "Conquer the DOM."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Domquest is a Chrome extension that puts important DevTools information in a convenient popup. Features include a waterfall for events and resources, as well as information on notable elements. Domquest is updated on a rolling weekly basis and we continue to add features we think are helpful. If you're experiencing issues or would like to see a feature added, click on Support and visit our Google Group.

2.45 - Several Performance Updates; Added Clear Cache Button;

2.61 - Several redesigns, including a Settings panel; Fixed 'More' button to expand and retract accordingly; Performance Enhancements;

2.92 - Major feature updates, including code snippets and toggle resource information. You can now click on an element name and it will pop out into a new tab and display the element source. On the Resource Waterfall, you can click on a resource name and it will toggle information specific to that resource.

2.95 - Fixed bug where a new tab would return to the wrong tab

2.99 - Fixed more tab-related bugs

3.0.0 - Major performance updates; Solved tab issues; Solved snippet issues;                    

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

ชื่อ Domquest Domquest
ID bakbdejljhcmgljjhcjpnidngfkpfhin
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/domquest/bakbdejljhcmgljjhcjpnidngfkpfhin
คำอธิบาย Conquer the DOM.
ขนาดไฟล์ 32.3 KB
จำนวนการติดตั้ง 97
เวอร์ชันปัจจุบัน 3.0.2
อัปเดตครั้งล่าสุด 2017-03-14
วันที่เผยแพร่ 2017-03-14
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา nickolasburr
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://groups.google.com/forum/#!forum/domquest
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Domquest",
    "description": "Conquer the DOM.",
    "version": "3.0.2",
    "background": {
        "scripts": [
            "js\/event.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "img\/layers-icon.png",
        "default_popup": "dashboard.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "img\/layers-icon-16.png",
        "48": "img\/layers-icon-48.png",
        "128": "img\/layers-icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ]
}