Boomerang Inspector

Boomerang Inspector Browser extension

Boomerang Inspector란 무엇입니까?

Boomerang Inspector은(는) Akamai Technologies, Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Boomerang Inspector Browser extension"입니다.

확장 프로그램 스크린샷

screenshot

Boomerang Inspector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Boomerang Inspector
ID ankakbccojpchchhhmenohlnflhnbfpa
공식 URL 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
}