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开发的Chrome扩展程序,该扩展的主要功能是“Minus for Unsplash is a simple addon that lets you hide the Unsplash+ content from Unsplash.”。

扩展截图

screenshot
screenshot

下载Minus for Unsplash · Remove Unsplash+扩展crx文件

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