Retheme

Enjoy the web without distractions. Removes ads and other annoying content from popular sites.

Retheme란 무엇입니까?

Retheme은(는) https://retheme.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enjoy the web without distractions. Removes ads and other annoying content from popular sites."입니다.

확장 프로그램 스크린샷

screenshot

Retheme 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension "themes" high-traffic sites to remove unwanted ads, popups, and other cluttering elements from the content.  Pin the extension to easily request a theme for your favorite sites, but otherwise, this is an install-and-forget extension that improves your daily viewing experience.

Privacy Policy:

- We do not collect any user information whatsoever.
- We do not sell anything - to you, or any other party.


Suggested Use:

Retheme operates in a very different way from traditional ad-blockers, therefore we recommend using it WITH one of those.  They block many 3rd-party scripts, speeding up the overall page load, while Retheme *only* tackles the visual layer, but can improve layout issues, remove gaps, etc.  They both have their uses, so run both!                    

확장 프로그램 기본 정보

이름 Retheme Retheme
ID jcmjgalhippcbbefclmckbcnacpjoeip
공식 URL https://chromewebstore.google.com/detail/retheme/jcmjgalhippcbbefclmckbcnacpjoeip
설명 Enjoy the web without distractions. Removes ads and other annoying content from popular sites.
파일 크기 208 KB
설치 횟수 312
현재 버전 0.3.0
최근 업데이트 2023-02-08
출시 날짜 2022-04-01
평점 5.00/5 총 2 개의 평점
개발자 https://retheme.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://retheme.org
도움말 페이지 URL https://github.com/kwhitley/retheme-site/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Retheme",
    "description": "Enjoy the web without distractions. Removes ads and other annoying content from popular sites.",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*.xml",
                "*:\/\/extensions\/*"
            ],
            "type": "module",
            "js": [
                "extension\/inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "extension\/background.js",
        "type": "module",
        "exclude_matches": [
            "*:\/\/*\/*.xml",
            "*:\/\/extensions\/*"
        ]
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": ".\/icons\/re.logo.16x16.png",
            "32": ".\/icons\/re.logo.32x32.png",
            "48": ".\/icons\/re.logo.48x48.png",
            "128": ".\/icons\/re.logo.128x128.png"
        }
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                ".\/icons\/re.logo.32x32.png"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/re.logo.16x16.png",
        "32": ".\/icons\/re.logo.32x32.png",
        "48": ".\/icons\/re.logo.48x48.png",
        "128": ".\/icons\/re.logo.128x128.png"
    },
    "host_permissions": [
        ""
    ]
}