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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}