Encyclosphere

Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias.

Encyclosphere là gì?

Encyclosphere là một tiện ích mở rộng Chrome được phát triển bởi Knowledge Standards Foundation, và tính năng chính của nó là "Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Encyclosphere 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

                        To learn more about the Encyclosphere, visit our website: https://encyclosphere.org

FEATURES

- Adds results from the Encyclosphere to search pages. Currently supports DuckDuckGo and Google; support for more search engines coming soon

- Removes Wikipedia results when there are relevant Encyclosphere results

- Built-in reader: Read articles with a peer-to-peer encyclopedia reader that fetches articles using WebTorrent

- Repoints Wikipedia results: Any Wikipedia results that remain are automatically pointed to the built-in reader. Never use Wikipedia again!

- Strengthen the network: Use your open tabs to seed articles with WebTorrent

- Highly customizable: Change the theme and font of the reader; choose when and how you see results


This extension is open source. Check out the source code here:
https://gitlab.com/ks_found/browser-extensions                    

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

Tên Encyclosphere Encyclosphere
ID olhghbhocpjleboiiigeljhimfilkfnn
URL Chính Thức https://chromewebstore.google.com/detail/encyclosphere/olhghbhocpjleboiiigeljhimfilkfnn
Mô tả Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias.
Kích Thước Tệp 4.27 MB
Số Lần Cài Đặt 474
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-07-06
Ngày Phát Hành 2022-11-22
Đánh Giá 3.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Knowledge Standards Foundation
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://encyclosphere.org
URL Trang Chính Sách Bảo Mật https://gitlab.com/ks_found/browser-extensions/-/wikis/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Encyclosphere",
    "description": "Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias.",
    "version": "1.1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/duckduckgo.com\/*",
                "https:\/\/www.google.com\/search*"
            ],
            "js": [
                "js\/theme.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/encyclosearch.org\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "reader.html",
                "css\/*",
                "js\/*",
                "font\/*",
                "logos\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "logos\/logo-16px.png",
        "32": "logos\/logo-32px.png",
        "48": "logos\/logo-48px.png",
        "128": "logos\/logo-128px.png"
    },
    "action": {
        "default_popup": "settings.html"
    }
}