LoginSignup
0
1

More than 5 years have passed since last update.

javascriptのWebInspecterでdevtoolsのスニペット機能にアクセスする

Last updated at Posted at 2016-12-04

Chromeのスニペットコードにアクセスする方法
Webインスペクタが開きドックから離した状態でインスペクタを開くとインスペクタに対するデバッグコンソールが開く。
そこで以下のスクリプトでスニペットにアクセスできる。


InspectorFrontendHost.getPreferences(function(prefs) {
    console.log(JSON.parse(prefs.scriptSnippets));
});
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1