HTML DOM Navigation

HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation.

什麼是HTML DOM Navigation?

HTML DOM Navigation是由hkokila開發的Chrome擴展程式,該擴展的主要功能是“HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation.”。

擴展截圖

screenshot
screenshot
screenshot

下載HTML DOM Navigation擴展crx文件

下載HTML DOM Navigation擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        I have developed this extension mainly for fetching the DOM quickly since it might take some time in the Watir automation. 

-Click on the ‘HTML DOM Navigation’ icon at the right top of the page once the webpage loads completely
-Hover the mouse over any element in the page to view the IRB format and the top five ancestors of an element
-Right click on the page and select the ‘HTML DOM Navigation -> Tree Format’ option in the Context-Menu to view the tree format (of an entire body tag)
-To disable, click on the icon again

**You can copy the content using ‘ctrl+c’
**You can scroll the content using up-arrow and down-arrow 
Note: If the copy/scroll doesn’t work, click anywhere on the page to focus on it and try again

Privacy: This tool doesn’t store any of your data                    

擴展基本資訊

名稱 HTML DOM Navigation HTML DOM Navigation
ID eimpgjcahblfpdgiknmbmglcafegimil
官方網址 https://chromewebstore.google.com/detail/html-dom-navigation/eimpgjcahblfpdgiknmbmglcafegimil
簡介 HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation.
檔案大小 13.89 KB
安裝次數 3,772
目前版本 1.0
更新時間 2016-10-24
上架時間 2016-10-24
評分 4.72/5 共 18 次評分
開發者 hkokila
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML DOM Navigation",
    "manifest_version": 2,
    "version": "1.0",
    "description": "HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation.",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "128": "img\/icon.png"
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "HTML DOM Navigation"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}