Skip to content

Instantly share code, notes, and snippets.

@Metnew
Created October 15, 2018 20:18
Show Gist options
  • Select an option

  • Save Metnew/2f32675b2d5ebc164475da54d3dff046 to your computer and use it in GitHub Desktop.

Select an option

Save Metnew/2f32675b2d5ebc164475da54d3dff046 to your computer and use it in GitHub Desktop.
chrome-devtools://devtools
chrome-devtools://devtools/bundled/js_app.html?debugFrontend&_remoteBase&experiments&remoteBase&test&panel&ws&wss&service-backend&can_dock
static _isDescriptorEnabled(descriptor) {
const activatorExperiment = descriptor['experiment'];
if (activatorExperiment === '*')
return Runtime.experiments.supportEnabled();
if (activatorExperiment && activatorExperiment.startsWith('!') && Runtime.experiments.isEnabled(activatorExperiment.substring(1)))
return false;
if (activatorExperiment && !activatorExperiment.startsWith('!') && !Runtime.experiments.isEnabled(activatorExperiment))
return false;
const condition = descriptor['condition'];
if (condition && !condition.startsWith('!') && !Runtime.queryParam(condition))
return false;
if (condition && condition.startsWith('!') && Runtime.queryParam(condition.substring(1)))
return false;
return true;
}
chrome-devtools://devtools/bundled/inspector.html?debugFrontend=%00#document
chrome-devtools://devtools/remote/serve_rev/@976598ba34517d59d3dda301f110984bd91df028/inspector.html
chrome-devtools://devtools/inspector.html
chrome-devtools://devtools/bundled/inspector.html?debugFrontend&_remoteBase=http://localhost:3000&experiments&remoteBase=http://localhost:3000&test&panel
chrome-devtools://devtools/bundled/inspector.html?ws=localhost:3000
chrome-devtools://devtools/bundled/inspector.html?docked=false&toolbar_color=rgba(223,223,223,1)}*{color:red&text_color=rgba(18,50,114,1)
chrome-devtools://devtools/inspector.html?docked=true&dockSide=bottom&toolbarColor=red;}div{background-color:green}A{background-color:red&textColor=red;}input{color:blue}B{background-color:red
chrome-devtools://devtools/bundled/js-app.html?debugFrontend=http://localhost:3000&_remoteBase=http://localhost:3000&experiments=http://localhost:3000&remoteBase=http://localhost:3000&test&panel=http://localhost:3000
chrome-devtools://devtools/bundled/inspector.html?remoteBase=https://chrome-devtools-frontend.appspot.com/../lock.cmpxchg8b.com/xour2Iab/&remoteFrontend=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment