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+ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tahoe Beetschen, και η κύρια λειτουργία του είναι "Minus for Unsplash is a simple addon that lets you hide the Unsplash+ content from Unsplash.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Minus for Unsplash · Remove Unsplash+

Λήψη αρχείων επέκτασης Minus for Unsplash · Remove Unsplash+ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}