Spyglass Search

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

What is Spyglass Search?

Spyglass Search is a Chrome extension developed by https://spyglass.fyi, and its main feature is "Sync your bookmarks & add your favorite sites to your Spyglass library".

Extension Screenshots

screenshot

Download Spyglass Search Extension CRX File

Download Spyglass Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Spyglass Search Spyglass Search
ID afhfiojklacoieoanfabefpfngphkmml
Official URL https://chromewebstore.google.com/detail/spyglass-search/afhfiojklacoieoanfabefpfngphkmml
Description Sync your bookmarks & add your favorite sites to your Spyglass library
File Size 88.86 KB
Installation Count 147
Current Version 1.1
Last Updated 2023-02-23
Publish Date 2023-02-22
Developer https://spyglass.fyi
Email [email protected]
Payment Type free
Extension Website https://www.spyglass.fyi
Privacy Policy Page URL https://www.spyglass.fyi/privacy
Supported Languages 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"
    ]
}