Minus for Unsplash · Remove Unsplash+

Minus for Unsplash is a simple addon that lets you hide the Unsplash+ content from Unsplash.

Minus for Unsplash · Remove Unsplash+ क्या है?

Minus for Unsplash · Remove Unsplash+ Tahoe Beetschen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Minus for Unsplash is a simple addon that lets you hide the Unsplash+ content from Unsplash."।

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

screenshot
screenshot

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

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

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

                        Unsplash used to be great! But since they introduced their new Unsplash+ service, browsing it has become a bit of a pain as it's now crowded with watermarked images blocked behind a pay wall. This extension aims to improve your Unsplash experience and get you more productive by getting rid of all that bloat. By turning Minus for Unsplash on, you will no longer see watermarked Unsplash+ images in your feed and will be able to focus on those that matter.

Notice: it is possible that Unsplash updates their site from time to time, which might break the addon. I can't really do anything about it since there's no way to predict the changes, but I should still be able to fix it quickly. If it happens please get in touch either by opening an issue on the GitHub repository or contact me by email 😊                    

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

नाम Minus for Unsplash · Remove Unsplash+ Minus for Unsplash · Remove Unsplash+
ID ancgmphhglnbebohehppcfjfdpakkcca
आधिकारिक URL https://chromewebstore.google.com/detail/minus-for-unsplash-%C2%B7-remo/ancgmphhglnbebohehppcfjfdpakkcca
विवरण Minus for Unsplash is a simple addon that lets you hide the Unsplash+ content from Unsplash.
फ़ाइल का आकार 110 KB
स्थापना संख्या 316
वर्तमान संस्करण 1.3
अंतिम अपडेट 2023-06-19
प्रकाशन तिथि 2023-01-01
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Tahoe Beetschen
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/morceaudebois/minus-for-unsplash
सहायता पृष्ठ URL https://github.com/morceaudebois/minus-for-unsplash/issues
समर्थित भाषाएँ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Minus for Unsplash \u00b7 Remove Unsplash+",
    "short_name": "Minus for Unsplash",
    "version": "1.3",
    "description": "Minus for Unsplash is a simple addon that lets you hide the Unsplash+ content from Unsplash.",
    "author": "Tahoe Beetschen",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/unsplash.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "512": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "title": "Minus for Unsplash"
    }
}