Better

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

Better क्या है?

Better Polyglot.Network द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension looks at your current URL, and recommends BETTER product/service alternatives via an in-page pop-up."।

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

screenshot
screenshot

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

crx प्रारूप में Better एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}