diff --git a/README.md b/README.md
index a22168b8..2001c32d 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ And you can customize these heavily with plugins, templates and hundreds of opti
|
- 🧩 29 plugins
+ 🧩 30 plugins
|
@@ -285,15 +285,18 @@ And you can customize these heavily with plugins, templates and hundreds of opti
+ | 📸 Website screenshot |
💉 Nightscout |
- |
+
+
+
+ |
|
- ![]() |
@@ -306,7 +309,7 @@ And you can customize these heavily with plugins, templates and hundreds of opti
|
- 🖼️ 3+ templates
+ 🖼️ 4+ templates
|
@@ -656,6 +659,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| 🗼 |
⏰ |
💹 |
+ 📸 |
💉 |
@@ -689,6 +693,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ✔️ |
✔️ |
✔️ |
+ ✔️ |
✔️ |
@@ -722,6 +727,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ✔️ |
❌ |
❌ |
+ ❌ |
❌ |
@@ -755,6 +761,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ❌ |
❌ |
❌ |
+ ❌ |
❌ |
@@ -788,6 +795,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ✔️ |
❌ |
❌ |
+ ❌ |
❌ |
@@ -842,6 +850,7 @@ See their respective documentation for more informations about how to setup them
* [⏰ WakaTime plugin](/source/plugins/wakatime/README.md)
* **Other**
* [💹 Stock prices](/source/plugins/stock/README.md)
+ * [📸 Website screenshot](/source/plugins/screenshot/README.md)
* [💉 Nightscout](/source/plugins/nightscout/README.md)
### 🏦 Organizations metrics
diff --git a/action.yml b/action.yml
index 20db1df3..e9f99357 100644
--- a/action.yml
+++ b/action.yml
@@ -945,6 +945,34 @@ inputs:
description: Time intervals between records
default: 5m
+ # ====================================================================================
+ # 📸 Website screenshot
+
+ # Enable or disable plugin
+ plugin_screenshot:
+ description: Display a screenshot of any website
+ default: no
+
+ # Screenshot title caption
+ plugin_screenshot_title:
+ description: Screenshot title caption
+ default: Screenshot
+
+ # Website to take screenshot
+ plugin_screenshot_url:
+ description: Website to take screenshot
+ default: ""
+
+ # Selector to take in screenshot
+ plugin_screenshot_selector:
+ description: Selector to take in screenshot
+ default: body
+
+ # Display or remove default page background
+ plugin_screenshot_background:
+ description: Display or remove default page background
+ default: yes
+
# ====================================================================================
# 💉 Nightscout
diff --git a/settings.example.json b/settings.example.json
index 8ade80d3..129cc3f8 100644
--- a/settings.example.json
+++ b/settings.example.json
@@ -116,6 +116,9 @@
"token": null, "//":"Yahoo Finance token",
"enabled": false, "//": "Display stock prices of a given company"
},
+ "screenshot":{
+ "enabled": false, "//": "Display a screenshot of any website"
+ },
"nightscout":{
"enabled": false, "//": "Displays Blood Glucose"
},
diff --git a/source/plugins/README.md b/source/plugins/README.md
index 6037ad12..194c4039 100644
--- a/source/plugins/README.md
+++ b/source/plugins/README.md
@@ -37,4 +37,5 @@ See their respective documentation for more informations about how to setup them
* [⏰ WakaTime plugin](/source/plugins/wakatime/README.md)
* **Other**
* [💹 Stock prices](/source/plugins/stock/README.md)
+ * [📸 Website screenshot](/source/plugins/screenshot/README.md)
* [💉 Nightscout](/source/plugins/nightscout/README.md)
|