Encyclosphere

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

Encyclosphere क्या है?

Encyclosphere Knowledge Standards Foundation द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Encyclosphere एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Encyclosphere Encyclosphere
ID olhghbhocpjleboiiigeljhimfilkfnn
आधिकारिक URL https://chromewebstore.google.com/detail/encyclosphere/olhghbhocpjleboiiigeljhimfilkfnn
विवरण Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias.
फ़ाइल का आकार 4.27 MB
स्थापना संख्या 474
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2023-07-06
प्रकाशन तिथि 2022-11-22
रेटिंग 3.60/5 कुल 5 रेटिंग्स
डेवलपर Knowledge Standards Foundation
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://encyclosphere.org
गोपनीयता नीति पृष्ठ URL https://gitlab.com/ks_found/browser-extensions/-/wikis/Privacy-Policy
समर्थित भाषाएँ 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"
    }
}