Skip to content

Instantly share code, notes, and snippets.

View Tksi's full-sized avatar

Tksi Tksi

  • Japan
  • 00:22 (UTC +09:00)
View GitHub Profile
@Tksi
Tksi / getAllCssStyleRule.js
Last active June 9, 2019 11:41
任意のページのCSSStyleRuleを取り出す(@で始まるやつを除く)
[...document.styleSheets]
.map(v => [...v.cssRules])
.flat()
.filter(v => v.media === '' && v.cssRules === undefined)
//最後の行はgoogleでしか意味ないかも