Meta Debugger
Debug the head section of any webpage in a comfortable way.
什麼是Meta Debugger?
Meta Debugger是由bluemoehre開發的Chrome擴展程式,該擴展的主要功能是“Debug the head section of any webpage in a comfortable way.”。
擴展截圖
下載Meta Debugger擴展crx文件
下載Meta Debugger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome extension was made to simplify the daily work with webpage meta data (head contents) like titles, canonicals, Open Graph data, icons and many more things. It will add another panel to your Chrome DevTools and allow you to see all information at a glance, nicely grouped and in real time. - Results are displayed in their source code order - The result list is always kept up-to-date. When (for whatever reason) it seems stucked, you may press the reload button located at the upper right. - The filter can be easily used by starting typing (the input doesn't need to be focused before) - You can filter by multiple arguments if you use `,` as delimiter (e.g. "title, canonical") - To show up result options/actions simply hover its row If you find some bugs please report them via Github: https://github.com/bluemoehre/chrome-meta-debugger Thanks!
擴展基本資訊
名稱 | Meta Debugger |
ID | jfpdemgdamgplelnlmaecbonkfgfgomp |
官方網址 | https://chromewebstore.google.com/detail/meta-debugger/jfpdemgdamgplelnlmaecbonkfgfgomp |
簡介 | Debug the head section of any webpage in a comfortable way. |
檔案大小 | 59.75 KB |
安裝次數 | 1,782 |
目前版本 | 0.7 |
更新時間 | 2018-12-20 |
上架時間 | 2018-12-19 |
評分 | 4.89/5 共 9 次評分 |
開發者 | bluemoehre |
付費類型 | free |
擴展官網 | https://github.com/bluemoehre/chrome-meta-debugger |
說明頁面URL | https://github.com/bluemoehre/chrome-meta-debugger/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Meta Debugger", "description": "Debug the head section of any webpage in a comfortable way.", "version": "0.7", "author": "bluemoehre", "permissions": [ "activeTab", "*:\/\/*\/*" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon.png", "38": "img\/icon38.png" }, "default_title": "Meta Debugger Extension", "default_popup": "html\/popup.html" }, "background": { "scripts": [ "js\/background.js" ] }, "devtools_page": "html\/background-devtools.html" } |