Chromeのスニペットコードにアクセスする方法
Webインスペクタが開きドックから離した状態でインスペクタを開くとインスペクタに対するデバッグコンソールが開く。
そこで以下のスクリプトでスニペットにアクセスできる。
InspectorFrontendHost.getPreferences(function(prefs) {
console.log(JSON.parse(prefs.scriptSnippets));
});
Go to list of users who liked
More than 5 years have passed since last update.
Chromeのスニペットコードにアクセスする方法
Webインスペクタが開きドックから離した状態でインスペクタを開くとインスペクタに対するデバッグコンソールが開く。
そこで以下のスクリプトでスニペットにアクセスできる。
InspectorFrontendHost.getPreferences(function(prefs) {
console.log(JSON.parse(prefs.scriptSnippets));
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked