Spyglass Search

Sync your bookmarks & add your favorite sites to your Spyglass library

Cos'è Spyglass Search?

Spyglass Search è un'estensione di Chrome sviluppata da https://spyglass.fyi, e la sua funzione principale è "Sync your bookmarks & add your favorite sites to your Spyglass library".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Spyglass Search

Scarica i file di estensione Spyglass Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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).                    

Informazioni di Base sull'Estensione

Nome Spyglass Search Spyglass Search
ID afhfiojklacoieoanfabefpfngphkmml
URL Ufficiale https://chromewebstore.google.com/detail/spyglass-search/afhfiojklacoieoanfabefpfngphkmml
Descrizione Sync your bookmarks & add your favorite sites to your Spyglass library
Dimensione del File 88.86 KB
Conteggio Installazioni 147
Versione Corrente 1.1
Ultimo Aggiornamento 2023-02-23
Data di Pubblicazione 2023-02-22
Sviluppatore https://spyglass.fyi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.spyglass.fyi
URL della Pagina della Politica sulla Privacy https://www.spyglass.fyi/privacy
Lingue Supportate 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"
    ]
}