Vytautas Butkus
Vytautas Butkus

Reputation: 5535

Chrome dev tools - Timeline API

do you know if there is anyway to access timeline through somekind of API? I would like to run some JS code which would start recording events, then stop it and save HAR to my database via post ajax call.

Thank you

Upvotes: 2

Views: 907

Answers (1)

loislo
loislo

Reputation: 14119

You can use chrome.debugger api for extensions

or

remote debugging protocol

Upvotes: 1

Related Questions