Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ specs/
# Stray build / prebuild stdout dumps (not source)
build-output.txt

# web-ext build output for AMO (Firefox) submission — generated artifact, not source
web-ext-artifacts/

# Local-only operator scripts (one-off helpers from PR-submission, audit,
# token-mint, and notebook-builder workflows). These are internal tooling
# that wraps live credentials and registry binaries; the canonical scripts
Expand Down
Binary file added extension/icons/icon-source-400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified extension/icons/icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified extension/icons/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 12 additions & 3 deletions extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
{
"manifest_version": 3,
"name": "TensorFeed AI Status",
"version": "1.0.1",
"version": "1.0.2",
"description": "Live operational status and p95 latency for every major AI provider and service, right in your toolbar.",
"action": {
"default_popup": "popup.html",
"default_title": "TensorFeed AI Status",
"default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }
},
"icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" },
"background": { "service_worker": "bg.js" },
"background": {
"service_worker": "bg.js",
"scripts": ["bg.js"]
},
"permissions": ["alarms"],
"host_permissions": ["https://tensorfeed.ai/*"],
"browser_specific_settings": {
"gecko": { "id": "ai-status@tensorfeed.ai", "strict_min_version": "121.0" }
"gecko": {
"id": "ai-status@tensorfeed.ai",
"strict_min_version": "121.0",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}