Mobile DevTools

A mobile browser extension for debugging web sites and applications with the console, DOM, network info, sources, and more.

Mobile DevTools란 무엇입니까?

Mobile DevTools은(는) Volle.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A mobile browser extension for debugging web sites and applications with the console, DOM, network info, sources, and more."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Mobile DevTools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A mobile browser extension for debugging web apps. Based on the open source project Eruda, Mobile DevTools allows you to view the console, DOM elements, network traffic, page source, resources, and more.

Click the extensions's icon in the toolbar or menu to open the overlay. Drag the top menu left & right and tap on a tab to open:
    • Console - View JavaScript logs, errors, warnings, and other debug info. Execute arbitrary JS to interact with the webpage.
    • Elements - Drill down into the DOM tree to see attributes, inline styles, CSS rules, and computed styles.
    • Network - Record in detail the network requests being made and inspect the responses.
    • Resource - Show local storage, session storage, cookies, scripts, stylesheets, iframes, and image assets.
    • Sources - Source code viewer for HTML, JS, and CSS.
    • Info - View the current URL, User Agent, and device details.
    • Snippets - Execute useful JavaScript snippets. If you're a developer and would like to add additional plugins, please visit Eruda's documentation at https://github.com/liriliri/eruda and contact the developer of this extension!

Mobile DevTools may not work on all websites, depending on the page content's security policies.                    

확장 프로그램 기본 정보

이름 Mobile DevTools Mobile DevTools
ID okfdckomkajiaeejefanbonnhppmplpo
공식 URL https://chromewebstore.google.com/detail/mobile-devtools/okfdckomkajiaeejefanbonnhppmplpo
설명 A mobile browser extension for debugging web sites and applications with the console, DOM, network info, sources, and more.
파일 크기 127 KB
설치 횟수 4,642
현재 버전 0.1.0
최근 업데이트 2019-08-30
출시 날짜 2019-08-29
평점 5.00/5 총 4 개의 평점
개발자 Volle.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/volleio/mobile-devtools
도움말 페이지 URL https://github.com/volleio/mobile-devtools/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mobile DevTools",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "A mobile browser extension for debugging web sites and applications with the console, DOM, network info, sources, and more.",
    "homepage_url": "https:\/\/github.com\/volleio\/mobile-devtools#readme",
    "icons": {
        "16": "icons\/mobile-devtools16.png",
        "48": "icons\/mobile-devtools48.png",
        "128": "icons\/mobile-devtools128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_title": "Mobile DevTools"
    },
    "web_accessible_resources": [
        "eruda.min.js",
        "toggle-devtools.js"
    ],
    "permissions": [
        "activeTab"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com https:\/\/www.google-analytics.com; object-src 'self'"
}