Spyglass Search

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

Spyglass Search là gì?

Spyglass Search là một tiện ích mở rộng Chrome được phát triển bởi https://spyglass.fyi, và tính năng chính của nó là "Sync your bookmarks & add your favorite sites to your Spyglass library".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spyglass Search

Tải xuống các tệp mở rộng Spyglass Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spyglass Search Spyglass Search
ID afhfiojklacoieoanfabefpfngphkmml
URL Chính Thức https://chromewebstore.google.com/detail/spyglass-search/afhfiojklacoieoanfabefpfngphkmml
Mô tả Sync your bookmarks & add your favorite sites to your Spyglass library
Kích Thước Tệp 88.86 KB
Số Lần Cài Đặt 147
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-02-23
Ngày Phát Hành 2023-02-22
Nhà Phát Triển https://spyglass.fyi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.spyglass.fyi
URL Trang Chính Sách Bảo Mật https://www.spyglass.fyi/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}