Inspect and view changes in Felo - Your Free AI Search Assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "25.10.1",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"48": "icon/48.png",
"96": "icon/96.png",
"128": "icon/128.png"
},
"default_locale": "en",
"action": {
"default_title": "Felo Search"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"storage",
"tabs",
"contextMenus",
"activeTab",
"scripting"
],
"externally_connectable": {
"matches": [
"https://*.felo.ai/*",
"http://*.felo.ai/*"
]
},
"options_ui": {
"page": "options.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"run_at": "document_idle",
"js": [
"content-scripts/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-scripts/content.css"
],
"matches": [
"*://*/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}