Better

This extension looks at your current URL, and recommends BETTER product/service alternatives via an in-page pop-up.

Better란 무엇입니까?

Better은(는) Polyglot.Network에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension looks at your current URL, and recommends BETTER product/service alternatives via an in-page pop-up."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This open-source extension looks at your current URL, and recommends "better" product/service alternatives via an in-page pop-up. "Better" could mean ethical / privacy-conscious / secure / local / cheaper / high-quality etc. The idea is to encourage competition and consumer choice. Our default list of alternatives is built from sources like https://switching.software/ and https://prism-break.org/en/

The extension ships with a default list of recommendations but you can subscribe to lists maintained by others. This allows different interpretations of "better" to exist and you can subscribe to those that appeals to your preferences the most.

For every URL pattern, multiple alternatives may exist. The first one is always shown as a primary recommendation with emphasis, and the rest are presented as secondary.

The pop-up shows an option to dismiss the suggestion forever for the current URL pattern. The extension needs permission to use localStorage for preserving these preferences.

The extension code itself as well as the default list is open-source and currently maintained at https://github.com/nileshtrivedi/better Users and developers are welcome to participate in the development and improve this extension.                    

확장 프로그램 기본 정보

이름 Better Better
ID fhblooichgponllpehbkpihicebfgfll
공식 URL https://chromewebstore.google.com/detail/better/fhblooichgponllpehbkpihicebfgfll
설명 This extension looks at your current URL, and recommends BETTER product/service alternatives via an in-page pop-up.
파일 크기 36.13 KB
설치 횟수 17
현재 버전 0.5.0
최근 업데이트 2020-09-16
출시 날짜 2020-08-17
개발자 Polyglot.Network
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nileshtrivedi/better
도움말 페이지 URL https://github.com/nileshtrivedi/better
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better",
    "version": "0.5.0",
    "icons": {
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "description": "This extension looks at your current URL, and recommends BETTER product\/service alternatives via an in-page pop-up.",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "manifest_version": 2,
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "images\/48.png",
        "default_title": "Better",
        "default_popup": "toolbar\/popup.html"
    },
    "web_accessible_resources": [
        "defaultlist.json",
        "lists\/*"
    ]
}