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文件

下載Better擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}