Spyglass Search

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

Spyglass Searchとは何ですか?

Spyglass Searchはhttps://spyglass.fyiによって開発されたChromeの拡張機能で、その主な機能は「Sync your bookmarks & add your favorite sites to your Spyglass library」です。

拡張機能のスクリーンショット

screenshot

Spyglass Search拡張機能のCRXファイルをダウンロード

Spyglass Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Spyglass Search Spyglass Search
ID afhfiojklacoieoanfabefpfngphkmml
公式URL https://chromewebstore.google.com/detail/spyglass-search/afhfiojklacoieoanfabefpfngphkmml
説明 Sync your bookmarks & add your favorite sites to your Spyglass library
ファイルサイズ 88.86 KB
インストール数 147
現在のバージョン 1.1
最終更新日 2023-02-23
公開日 2023-02-22
開発者 https://spyglass.fyi
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.spyglass.fyi
プライバシーポリシーページのURL https://www.spyglass.fyi/privacy
対応言語 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"
    ]
}