Spyglass Search
Sync your bookmarks & add your favorite sites to your Spyglass library
Was ist Spyglass Search?
Spyglass Search ist eine Chrome-Erweiterung, die von https://spyglass.fyi entwickelt wurde, und ihr Hauptmerkmal ist "Sync your bookmarks & add your favorite sites to your Spyglass library".
Erweiterungsscreenshots
Spyglass Search-Erweiterungs-CRX-Datei herunterladen
Laden Sie Spyglass Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is a companion extension for Spyglass (https://www.spyglass.fyi). Spyglass is a completely self-hosted search platform that lets you search your corner of internet through integrations with your local files, your favorite cloud services, and any topics that you're interested in. If you're having trouble using the extension, please open an issue on Github (https://github.com/spyglass-search/webextension) or reach out to us on Discord (https://discord.gg/663wPVBSTB).
Grundlegende Informationen zur Erweiterung
Name | |
ID | afhfiojklacoieoanfabefpfngphkmml |
Offizielle URL | https://chromewebstore.google.com/detail/spyglass-search/afhfiojklacoieoanfabefpfngphkmml |
Beschreibung | Sync your bookmarks & add your favorite sites to your Spyglass library |
Dateigröße | 88.86 KB |
Installationsanzahl | 147 |
Aktuelle Version | 1.1 |
Letztes Update | 2023-02-23 |
Veröffentlichungsdatum | 2023-02-22 |
Entwickler | https://spyglass.fyi |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.spyglass.fyi |
URL der Datenschutzrichtlinien-Seite | https://www.spyglass.fyi/privacy |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spyglass Search", "description": "Sync your bookmarks & add your favorite sites to your Spyglass library", "version": "1.1", "short_name": "Spyglass", "manifest_version": 3, "icons": { "48": "images\/icon_48.png", "96": "images\/icon_96.png" }, "background": { "service_worker": "scripts\/background.js", "type": "module" }, "action": { "default_icon": { "48": "images\/icon_48.png", "96": "images\/icon_96.png" }, "default_title": "Spyglass Search", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "host_permissions": [ "http:\/\/localhost\/*" ], "permissions": [ "activeTab", "alarms", "bookmarks", "tabs", "scripting", "storage" ] } |