├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── accessibility ├── accessibility.go ├── events.go └── types.go ├── animation ├── animation.go ├── events.go └── types.go ├── audits ├── audits.go ├── events.go └── types.go ├── autofill ├── autofill.go ├── events.go └── types.go ├── backgroundservice ├── backgroundservice.go ├── events.go └── types.go ├── bluetoothemulation ├── bluetoothemulation.go ├── events.go └── types.go ├── browser ├── browser.go ├── events.go └── types.go ├── cachestorage ├── cachestorage.go └── types.go ├── cast ├── cast.go ├── events.go └── types.go ├── cdp └── types.go ├── cdproto.go ├── css ├── css.go ├── events.go └── types.go ├── debugger ├── debugger.go ├── events.go └── types.go ├── deviceaccess ├── deviceaccess.go ├── events.go └── types.go ├── deviceorientation └── deviceorientation.go ├── dom ├── dom.go ├── events.go └── types.go ├── domdebugger ├── domdebugger.go └── types.go ├── domsnapshot ├── domsnapshot.go └── types.go ├── domstorage ├── domstorage.go ├── events.go └── types.go ├── emulation ├── emulation.go ├── events.go └── types.go ├── eventbreakpoints └── eventbreakpoints.go ├── extensions ├── extensions.go └── types.go ├── fedcm ├── events.go ├── fedcm.go └── types.go ├── fetch ├── events.go ├── fetch.go └── types.go ├── filesystem ├── filesystem.go └── types.go ├── go.mod ├── go.sum ├── har ├── har.go └── types.go ├── headlessexperimental ├── headlessexperimental.go └── types.go ├── heapprofiler ├── events.go ├── heapprofiler.go └── types.go ├── indexeddb ├── indexeddb.go └── types.go ├── input ├── events.go ├── input.go └── types.go ├── inspector ├── events.go ├── inspector.go └── types.go ├── io ├── io.go └── types.go ├── layertree ├── events.go ├── layertree.go └── types.go ├── log ├── events.go ├── log.go └── types.go ├── media ├── events.go ├── media.go └── types.go ├── memory ├── memory.go └── types.go ├── network ├── events.go ├── network.go └── types.go ├── overlay ├── events.go ├── overlay.go └── types.go ├── page ├── events.go ├── page.go └── types.go ├── performance ├── events.go ├── performance.go └── types.go ├── performancetimeline ├── events.go ├── performancetimeline.go └── types.go ├── preload ├── events.go ├── preload.go └── types.go ├── profiler ├── events.go ├── profiler.go └── types.go ├── pwa ├── pwa.go └── types.go ├── runtime ├── events.go ├── runtime.go └── types.go ├── security ├── events.go ├── security.go └── types.go ├── serviceworker ├── events.go ├── serviceworker.go └── types.go ├── storage ├── events.go ├── storage.go └── types.go ├── systeminfo ├── systeminfo.go └── types.go ├── target ├── events.go ├── target.go └── types.go ├── tethering ├── events.go └── tethering.go ├── tracing ├── events.go ├── tracing.go └── types.go ├── webaudio ├── events.go ├── types.go └── webaudio.go └── webauthn ├── events.go ├── types.go └── webauthn.go /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.pdl 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/README.md -------------------------------------------------------------------------------- /accessibility/accessibility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/accessibility/accessibility.go -------------------------------------------------------------------------------- /accessibility/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/accessibility/events.go -------------------------------------------------------------------------------- /accessibility/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/accessibility/types.go -------------------------------------------------------------------------------- /animation/animation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/animation/animation.go -------------------------------------------------------------------------------- /animation/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/animation/events.go -------------------------------------------------------------------------------- /animation/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/animation/types.go -------------------------------------------------------------------------------- /audits/audits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/audits/audits.go -------------------------------------------------------------------------------- /audits/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/audits/events.go -------------------------------------------------------------------------------- /audits/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/audits/types.go -------------------------------------------------------------------------------- /autofill/autofill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/autofill/autofill.go -------------------------------------------------------------------------------- /autofill/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/autofill/events.go -------------------------------------------------------------------------------- /autofill/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/autofill/types.go -------------------------------------------------------------------------------- /backgroundservice/backgroundservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/backgroundservice/backgroundservice.go -------------------------------------------------------------------------------- /backgroundservice/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/backgroundservice/events.go -------------------------------------------------------------------------------- /backgroundservice/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/backgroundservice/types.go -------------------------------------------------------------------------------- /bluetoothemulation/bluetoothemulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/bluetoothemulation/bluetoothemulation.go -------------------------------------------------------------------------------- /bluetoothemulation/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/bluetoothemulation/events.go -------------------------------------------------------------------------------- /bluetoothemulation/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/bluetoothemulation/types.go -------------------------------------------------------------------------------- /browser/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/browser/browser.go -------------------------------------------------------------------------------- /browser/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/browser/events.go -------------------------------------------------------------------------------- /browser/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/browser/types.go -------------------------------------------------------------------------------- /cachestorage/cachestorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/cachestorage/cachestorage.go -------------------------------------------------------------------------------- /cachestorage/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/cachestorage/types.go -------------------------------------------------------------------------------- /cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/cast/cast.go -------------------------------------------------------------------------------- /cast/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/cast/events.go -------------------------------------------------------------------------------- /cast/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/cast/types.go -------------------------------------------------------------------------------- /cdp/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/cdp/types.go -------------------------------------------------------------------------------- /cdproto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/cdproto.go -------------------------------------------------------------------------------- /css/css.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/css/css.go -------------------------------------------------------------------------------- /css/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/css/events.go -------------------------------------------------------------------------------- /css/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/css/types.go -------------------------------------------------------------------------------- /debugger/debugger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/debugger/debugger.go -------------------------------------------------------------------------------- /debugger/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/debugger/events.go -------------------------------------------------------------------------------- /debugger/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/debugger/types.go -------------------------------------------------------------------------------- /deviceaccess/deviceaccess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/deviceaccess/deviceaccess.go -------------------------------------------------------------------------------- /deviceaccess/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/deviceaccess/events.go -------------------------------------------------------------------------------- /deviceaccess/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/deviceaccess/types.go -------------------------------------------------------------------------------- /deviceorientation/deviceorientation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/deviceorientation/deviceorientation.go -------------------------------------------------------------------------------- /dom/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/dom/dom.go -------------------------------------------------------------------------------- /dom/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/dom/events.go -------------------------------------------------------------------------------- /dom/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/dom/types.go -------------------------------------------------------------------------------- /domdebugger/domdebugger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/domdebugger/domdebugger.go -------------------------------------------------------------------------------- /domdebugger/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/domdebugger/types.go -------------------------------------------------------------------------------- /domsnapshot/domsnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/domsnapshot/domsnapshot.go -------------------------------------------------------------------------------- /domsnapshot/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/domsnapshot/types.go -------------------------------------------------------------------------------- /domstorage/domstorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/domstorage/domstorage.go -------------------------------------------------------------------------------- /domstorage/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/domstorage/events.go -------------------------------------------------------------------------------- /domstorage/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/domstorage/types.go -------------------------------------------------------------------------------- /emulation/emulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/emulation/emulation.go -------------------------------------------------------------------------------- /emulation/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/emulation/events.go -------------------------------------------------------------------------------- /emulation/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/emulation/types.go -------------------------------------------------------------------------------- /eventbreakpoints/eventbreakpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/eventbreakpoints/eventbreakpoints.go -------------------------------------------------------------------------------- /extensions/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/extensions/extensions.go -------------------------------------------------------------------------------- /extensions/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/extensions/types.go -------------------------------------------------------------------------------- /fedcm/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/fedcm/events.go -------------------------------------------------------------------------------- /fedcm/fedcm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/fedcm/fedcm.go -------------------------------------------------------------------------------- /fedcm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/fedcm/types.go -------------------------------------------------------------------------------- /fetch/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/fetch/events.go -------------------------------------------------------------------------------- /fetch/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/fetch/fetch.go -------------------------------------------------------------------------------- /fetch/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/fetch/types.go -------------------------------------------------------------------------------- /filesystem/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/filesystem/filesystem.go -------------------------------------------------------------------------------- /filesystem/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/filesystem/types.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/go.sum -------------------------------------------------------------------------------- /har/har.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/har/har.go -------------------------------------------------------------------------------- /har/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/har/types.go -------------------------------------------------------------------------------- /headlessexperimental/headlessexperimental.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/headlessexperimental/headlessexperimental.go -------------------------------------------------------------------------------- /headlessexperimental/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/headlessexperimental/types.go -------------------------------------------------------------------------------- /heapprofiler/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/heapprofiler/events.go -------------------------------------------------------------------------------- /heapprofiler/heapprofiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/heapprofiler/heapprofiler.go -------------------------------------------------------------------------------- /heapprofiler/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/heapprofiler/types.go -------------------------------------------------------------------------------- /indexeddb/indexeddb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/indexeddb/indexeddb.go -------------------------------------------------------------------------------- /indexeddb/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/indexeddb/types.go -------------------------------------------------------------------------------- /input/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/input/events.go -------------------------------------------------------------------------------- /input/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/input/input.go -------------------------------------------------------------------------------- /input/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/input/types.go -------------------------------------------------------------------------------- /inspector/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/inspector/events.go -------------------------------------------------------------------------------- /inspector/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/inspector/inspector.go -------------------------------------------------------------------------------- /inspector/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/inspector/types.go -------------------------------------------------------------------------------- /io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/io/io.go -------------------------------------------------------------------------------- /io/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/io/types.go -------------------------------------------------------------------------------- /layertree/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/layertree/events.go -------------------------------------------------------------------------------- /layertree/layertree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/layertree/layertree.go -------------------------------------------------------------------------------- /layertree/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/layertree/types.go -------------------------------------------------------------------------------- /log/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/log/events.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/log/log.go -------------------------------------------------------------------------------- /log/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/log/types.go -------------------------------------------------------------------------------- /media/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/media/events.go -------------------------------------------------------------------------------- /media/media.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/media/media.go -------------------------------------------------------------------------------- /media/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/media/types.go -------------------------------------------------------------------------------- /memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/memory/memory.go -------------------------------------------------------------------------------- /memory/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/memory/types.go -------------------------------------------------------------------------------- /network/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/network/events.go -------------------------------------------------------------------------------- /network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/network/network.go -------------------------------------------------------------------------------- /network/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/network/types.go -------------------------------------------------------------------------------- /overlay/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/overlay/events.go -------------------------------------------------------------------------------- /overlay/overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/overlay/overlay.go -------------------------------------------------------------------------------- /overlay/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/overlay/types.go -------------------------------------------------------------------------------- /page/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/page/events.go -------------------------------------------------------------------------------- /page/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/page/page.go -------------------------------------------------------------------------------- /page/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/page/types.go -------------------------------------------------------------------------------- /performance/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/performance/events.go -------------------------------------------------------------------------------- /performance/performance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/performance/performance.go -------------------------------------------------------------------------------- /performance/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/performance/types.go -------------------------------------------------------------------------------- /performancetimeline/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/performancetimeline/events.go -------------------------------------------------------------------------------- /performancetimeline/performancetimeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/performancetimeline/performancetimeline.go -------------------------------------------------------------------------------- /performancetimeline/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/performancetimeline/types.go -------------------------------------------------------------------------------- /preload/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/preload/events.go -------------------------------------------------------------------------------- /preload/preload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/preload/preload.go -------------------------------------------------------------------------------- /preload/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/preload/types.go -------------------------------------------------------------------------------- /profiler/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/profiler/events.go -------------------------------------------------------------------------------- /profiler/profiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/profiler/profiler.go -------------------------------------------------------------------------------- /profiler/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/profiler/types.go -------------------------------------------------------------------------------- /pwa/pwa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/pwa/pwa.go -------------------------------------------------------------------------------- /pwa/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/pwa/types.go -------------------------------------------------------------------------------- /runtime/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/runtime/events.go -------------------------------------------------------------------------------- /runtime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/runtime/runtime.go -------------------------------------------------------------------------------- /runtime/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/runtime/types.go -------------------------------------------------------------------------------- /security/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/security/events.go -------------------------------------------------------------------------------- /security/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/security/security.go -------------------------------------------------------------------------------- /security/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/security/types.go -------------------------------------------------------------------------------- /serviceworker/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/serviceworker/events.go -------------------------------------------------------------------------------- /serviceworker/serviceworker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/serviceworker/serviceworker.go -------------------------------------------------------------------------------- /serviceworker/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/serviceworker/types.go -------------------------------------------------------------------------------- /storage/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/storage/events.go -------------------------------------------------------------------------------- /storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/storage/storage.go -------------------------------------------------------------------------------- /storage/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/storage/types.go -------------------------------------------------------------------------------- /systeminfo/systeminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/systeminfo/systeminfo.go -------------------------------------------------------------------------------- /systeminfo/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/systeminfo/types.go -------------------------------------------------------------------------------- /target/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/target/events.go -------------------------------------------------------------------------------- /target/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/target/target.go -------------------------------------------------------------------------------- /target/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/target/types.go -------------------------------------------------------------------------------- /tethering/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/tethering/events.go -------------------------------------------------------------------------------- /tethering/tethering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/tethering/tethering.go -------------------------------------------------------------------------------- /tracing/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/tracing/events.go -------------------------------------------------------------------------------- /tracing/tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/tracing/tracing.go -------------------------------------------------------------------------------- /tracing/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/tracing/types.go -------------------------------------------------------------------------------- /webaudio/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/webaudio/events.go -------------------------------------------------------------------------------- /webaudio/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/webaudio/types.go -------------------------------------------------------------------------------- /webaudio/webaudio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/webaudio/webaudio.go -------------------------------------------------------------------------------- /webauthn/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/webauthn/events.go -------------------------------------------------------------------------------- /webauthn/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/webauthn/types.go -------------------------------------------------------------------------------- /webauthn/webauthn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromedp/cdproto/HEAD/webauthn/webauthn.go --------------------------------------------------------------------------------