A browser extension that lets you summarize any webpage and ask questions using AI.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 57 lines 1.3 kB view raw
1{ 2 "manifest_version": 3, 3 "name": "Lede", 4 "version": "1.0.0", 5 "description": "Lede — page summarizer & chat. Don't bury the main point—summarize and discuss any article.", 6 "permissions": [ 7 "activeTab", 8 "tabs", 9 "storage", 10 "scripting", 11 "declarativeNetRequest", 12 "contextMenus" 13 ], 14 "commands": { 15 "summarize-page": { 16 "suggested_key": { 17 "default": "Ctrl+Shift+U", 18 "mac": "Command+Shift+U" 19 }, 20 "description": "Open Lede for this page" 21 } 22 }, 23 "host_permissions": [ 24 "http://localhost/*", 25 "http://127.0.0.1/*", 26 "http://*/*", 27 "https://*/*" 28 ], 29 "declarative_net_request": { 30 "rule_resources": [ 31 { 32 "id": "rewrite_origin", 33 "enabled": true, 34 "path": "rules.json" 35 } 36 ] 37 }, 38 "action": { 39 "default_popup": "popup/popup.html", 40 "default_icon": { 41 "16": "icons/icon16.png", 42 "32": "icons/icon32.png", 43 "48": "icons/icon48.png", 44 "128": "icons/icon128.png" 45 } 46 }, 47 "background": { 48 "service_worker": "scripts/background.js" 49 }, 50 "options_page": "options/options.html", 51 "icons": { 52 "16": "icons/icon16.png", 53 "32": "icons/icon32.png", 54 "48": "icons/icon48.png", 55 "128": "icons/icon128.png" 56 } 57}