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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}