Encyclosphere

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

Encyclosphere란 무엇입니까?

Encyclosphere은(는) Knowledge Standards Foundation에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Upgrade your searches with results from the Encyclosphere, the universal network of all the encyclopedias."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Encyclosphere 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}