Save computed style
Overview
Set style attribute to computed style, and save html file.
スタイルシートなどで指定されたスタイルを、各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> ```
0 out of 5No ratings
Google doesn't verify reviews. Learn more about results and reviews.
Details
- Version1.0.1
- UpdatedMarch 26, 2019
- Offered byyuji38kwmt
- Size66.22KiB
- Languages日本語
- Non-traderThis developer has not identified itself as a trader. For consumers in the European Union, please note that consumer rights do not apply to contracts between you and this developer.
Privacy
Support
For help with questions, suggestions, or problems, please open this page on your desktop browser