A firefox extension to autorefresh the feed every X seconds
1{
2 "manifest_version": 3,
3 "name": "Bluesky Auto Refresh",
4 "version": "1.2",
5 "description": "Automatically refreshes the Bluesky timeline with a customizable interval.",
6 "permissions": [
7 "activeTab",
8 "storage"
9 ],
10 "action": {
11 "default_popup": "popup.html",
12 "default_icon": {
13 "16": "images/icon16.png",
14 "48": "images/icon48.png",
15 "128": "images/icon128.png"
16 }
17 },
18 "background": {
19 "scripts": [
20 "background.js"
21 ]
22 },
23 "content_scripts": [
24 {
25 "matches": [
26 "https://bsky.app/*"
27 ],
28 "js": [
29 "content.js"
30 ]
31 }
32 ],
33 "browser_specific_settings": {
34 "gecko": {
35 "id": "{7e08ead6-7844-4272-8140-4875a3b76f5a}"
36 }
37 }
38}