Encyclosphere

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

¿Qué es Encyclosphere?

Encyclosphere es una extensión de Chrome desarrollada por Knowledge Standards Foundation, y su función principal es "Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Encyclosphere

Descarga archivos de extensión Encyclosphere en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Encyclosphere Encyclosphere
ID olhghbhocpjleboiiigeljhimfilkfnn
URL Oficial https://chromewebstore.google.com/detail/encyclosphere/olhghbhocpjleboiiigeljhimfilkfnn
Descripción Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias.
Tamaño del Archivo 4.27 MB
Cantidad de Instalaciones 474
Versión Actual 1.1.0
Última Actualización 2023-07-06
Fecha de Publicación 2022-11-22
Calificación 3.60/5 Total de 5 Calificaciones
Desarrollador Knowledge Standards Foundation
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://encyclosphere.org
URL de la Página de Política de Privacidad https://gitlab.com/ks_found/browser-extensions/-/wikis/Privacy-Policy
Idiomas Soportados 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"
    }
}