Retheme

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

Rethemeคืออะไร?

Retheme เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://retheme.org และคุณลักษณะหลักของมันคือ "Enjoy the web without distractions. Removes ads and other annoying content from popular sites."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Retheme

ดาวน์โหลดไฟล์ส่วนขยาย Retheme ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
        ""
    ]
}