this repo has no description
chromewebstore.google.com/detail/lmahbdngkjgdbcabpggmcjgemmjkafac
extension
atproto
1{
2 "manifest_version": 3,
3 "name": "Deer Direct - Bluesky to Deer Redirect",
4 "version": "1.1",
5 "description": "Automatically redirects bsky.app links to a configurable destination (default: deer.social)",
6 "permissions": ["declarativeNetRequest", "storage"],
7 "host_permissions": ["https://bsky.app/*"],
8 "background": {
9 "service_worker": "background.js"
10 },
11 "options_page": "options.html",
12 "declarative_net_request": {
13 "rule_resources": [
14 {
15 "id": "ruleset_1",
16 "enabled": false,
17 "path": "rules_1.json"
18 }
19 ]
20 },
21 "content_scripts": [
22 {
23 "matches": ["https://bsky.app/*"],
24 "js": ["content.js"],
25 "run_at": "document_start"
26 }
27 ],
28 "icons": {
29 "16": "icon16.png",
30 "48": "icon48.png",
31 "128": "icon128.png"
32 }
33}