スタイルシートなどで指定されたスタイルを、各HTMLタグのstyle属性に反映させて、反映後のHTMLファイルをダウンロードします。
webページを、以下の条件を満たすサイトに移行するときなどに利用できます。
* HTMLタグが利用できる
* style要素やスタイルシートが利用できないが、style属性は利用できる。
style属性に反映させるCSSプロパティは、選択可能です。
### 実行例
Chromeで表示しているHTML
```
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
h1 {
color: red;
background-color: green;
}
</style>
</head>
<body>
<h1>test</h1>
</body>
</html>
```
Extensionでbackground, fontプロパティをstyle属性に反映させたHTML
```
<!DOCTYPE html><html><head>
<meta charset="utf-8">
<style>
h1 {
color: red;
background-color: green;
}
</style>
</head>
<body>
<h1 style="background: none 0% 0% / auto repeat scroll padding-box border-box rgb(0, 128, 0); font: 700 32px Meiryo;">test</h1>
</body></html>
```
Extore is a team of professionals who are passionate about creating extensions for web browsers. This devotion also gives us opportunity to appreciate work of other people. We get inspired by useful, open source extensions made by developers all over the world. Our strong belief is that one should share helpful add-ons with others. That’s why we’d like to present you our ever-growing list of favourite extensions that have inspired us. Moreover, as you probably have already learned, sometimes struggling for the best brings an end to the good. Talking about add-ons it often turns out that an upgrade is worse then previous version. Also it can become really tricky to get back to the beloved version of your favourite extension. That’s why we’re going to make not only the latest, but all versions of our favourite (and we hope yours too) add-ons available for download. No more compromises, just stick to the version you really like!