Skip to content

Commit 4812165

Browse files
Merge branch 'master' into master
2 parents 04f0eb0 + b8703f6 commit 4812165

File tree

5 files changed

+44
-3
lines changed

5 files changed

+44
-3
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,11 @@ There are some FreshRSS extensions out there, developed by community members:
161161
### By [@Niehztog](https://github.com/Niehztog)
162162

163163
* [Article Full Text](https://github.com/Niehztog/freshrss-af-readability): Fetches full article contents and adds them to feed items by using [Fivefilters Readability.php library](https://github.com/fivefilters/readability.php) (no docker containers required).
164+
165+
### By [@tryallthethings](https://github.com/tryallthethings)
166+
167+
* [FreshVibes](https://github.com/tryallthethings/freshvibes): A fully customizable iGoogle / Netvibes-like dashboard view
168+
169+
### By [@pe1uca](https://github.com/pe1uca)
170+
171+
* [Rate limiter](https://github.com/pe1uca/xExtension-RateLimiter/): Prevents FreshRSS from making too many requests to the same site in a defined amount of time.

extensions.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,17 @@
166166
"method": "git",
167167
"directory": "xExtension-FixedNavMenu"
168168
},
169+
{
170+
"name": "Fresh Vibes View",
171+
"author": "Try all the things",
172+
"description": "Provides a Netvibes-like dashboard view with draggable feed containers.",
173+
"version": "1.8.0",
174+
"entrypoint": "FreshVibesView",
175+
"type": "user",
176+
"url": "https://github.com/tryallthethings/freshvibes",
177+
"method": "git",
178+
"directory": "."
179+
},
169180
{
170181
"name": "FreshRss FlareSolverr",
171182
"author": "James Ravenscroft",
@@ -331,6 +342,17 @@
331342
"method": "git",
332343
"directory": "xExtension-RssBridge"
333344
},
345+
{
346+
"name": "RateLimitFeeds",
347+
"author": "pe1uca",
348+
"description": "Rate limit feed updates per site.",
349+
"version": "3.2.0",
350+
"entrypoint": "RateLimiter",
351+
"type": "system",
352+
"url": "https://github.com/pe1uca/xExtension-RateLimiter",
353+
"method": "git",
354+
"directory": "."
355+
},
334356
{
335357
"name": "Readable",
336358
"author": "printfuck",
@@ -412,7 +434,7 @@
412434
"name": "ShowFeedID",
413435
"author": "math-GH, Inverle",
414436
"description": "Show the ID of feed and category",
415-
"version": "0.4.1",
437+
"version": "0.4.2",
416438
"entrypoint": "ShowFeedID",
417439
"type": "user",
418440
"url": "https://github.com/FreshRSS/Extensions",

repositories.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,10 @@
9494
}, {
9595
"url": "https://github.com/Niehztog/freshrss-af-readability",
9696
"type": "git"
97+
}, {
98+
"url": "https://github.com/tryallthethings/freshvibes",
99+
"type": "git"
100+
}, {
101+
"url": "https://github.com/pe1uca/xExtension-RateLimiter",
102+
"type": "git"
97103
}]

xExtension-showFeedID/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ShowFeedID",
33
"author": "math-GH, Inverle",
44
"description": "Show the ID of feed and category",
5-
"version": "0.4.1",
5+
"version": "0.4.2",
66
"entrypoint": "ShowFeedID",
77
"type": "user"
88
}

xExtension-showFeedID/static/showfeedid.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ window.addEventListener("load", function () {
44
// eslint-disable-next-line no-undef
55
const i18n = context.extensions.showfeedid_i18n;
66

7-
const div = document.querySelector('h1 ~ div');
7+
let div = document.querySelector('h1 ~ div');
8+
if (div.classList.contains('drop-section')) {
9+
div = document.createElement('div');
10+
document.querySelector('h1').after(div);
11+
}
12+
813
const button = document.createElement('a');
914

1015
button.classList.add('btn');

0 commit comments

Comments
 (0)