Boomerang Inspector
Boomerang Inspector Browser extension
什麼是Boomerang Inspector?
Boomerang Inspector是由Akamai Technologies, Inc.開發的Chrome擴展程式,該擴展的主要功能是“Boomerang Inspector Browser extension”。
擴展截圖
下載Boomerang Inspector擴展crx文件
下載Boomerang Inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Provides a browser extension for quickly viewing information about the Boomerang javascript library running on a page. boomerang is a JavaScript library that measures the page load time experienced by real users, commonly called RUM (Real User Measurement). This extension allows to quickly view some of the critical information that users would generally find when looking at the Chrome DevTools. The audience for this extension are generally any users who use the Chrome DevTools to understand the current version and other auxiliary information of the Boomerang library that's running on a given site.
擴展基本資訊
名稱 | Boomerang Inspector |
ID | ankakbccojpchchhhmenohlnflhnbfpa |
官方網址 | https://chromewebstore.google.com/detail/boomerang-inspector/ankakbccojpchchhhmenohlnflhnbfpa |
簡介 | Boomerang Inspector Browser extension |
檔案大小 | 280 KB |
安裝次數 | 166 |
目前版本 | 0.6.0 |
更新時間 | 2021-01-13 |
上架時間 | 2021-01-12 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Akamai Technologies, Inc. |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/querymetrics/boomerang-inspector/issues |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Boomerang Inspector", "version": "0.6.0", "description": "Boomerang Inspector Browser extension", "author": "Nigel Heron", "homepage_url": "https:\/\/github.com\/querymetrics\/boomerang-inspector", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Boomerang Inspector", "default_popup": "popup\/popup.html", "default_icon": { "20": "icons\/boomr-20x20-gray.png", "32": "icons\/boomr-32x32-gray.png", "48": "icons\/boomr-48x48-gray.png", "128": "icons\/boomr-128x128-gray.png" } }, "icons": { "20": "icons\/boomr-20x20.png", "32": "icons\/boomr-32x32.png", "48": "icons\/boomr-48x48.png", "128": "icons\/boomr-128x128.png" }, "permissions": [ "webRequest", "webNavigation", "storage", "cookies", "http:\/\/*\/*", "https:\/\/*\/*" ], "devtools_page": "devtools\/devtools.html", "options_ui": { "page": "options\/options.html" }, "manifest_version": 2 } |