iCloud Hide My Email

Use iCloud's Hide My Email service on Chrome.

iCloud Hide My Emailคืออะไร?

iCloud Hide My Email เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dedouss.is และคุณลักษณะหลักของมันคือ "Use iCloud's Hide My Email service on Chrome."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย iCloud Hide My Email

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

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

                        This extension enables the use of iCloud's Hide My Email service on any Chromium based browser such as Google Chrome, Brave, Opera, and Microsoft Edge.

Hide My Email is natively supported in Safari. This extension aims to bring a similar UX to the Chromium ecosystem.

Features:

- Simple pop-up UI for generating and reserving new Hide My Email addresses
- Ability to manage existing Hide My Email addresses (including deactivation, reactivation, and deletion)
- Instant autofilling on any HTML input element that is relevant to email
- Quick configuration of Hide My Email settings, such as the Forward-To address, through the Options page of the extension.

Disclaimer: This extension is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by Apple.

Source code: https://github.com/dedoussis/icloud-hide-my-email-browser-extension

Found an issue or bug? Please submit it here: https://github.com/dedoussis/icloud-hide-my-email-browser-extension/issues/new                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ iCloud Hide My Email iCloud Hide My Email
ID omiaekblhgfopjkjnenhahfgcgnbohlk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/icloud-hide-my-email/omiaekblhgfopjkjnenhahfgcgnbohlk
คำอธิบาย Use iCloud's Hide My Email service on Chrome.
ขนาดไฟล์ 410 KB
จำนวนการติดตั้ง 1,477
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2024-01-28
วันที่เผยแพร่ 2022-09-14
คะแนน 4.23/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา https://dedouss.is
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.2.3",
    "name": "iCloud Hide My Email",
    "description": "Use iCloud's Hide My Email service on Chrome.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "contentScript.css"
            ]
        }
    ],
    "options_page": "options.html",
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "icloud_com_simulation_headers",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "tabs",
        "contextMenus",
        "webRequest",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/*.icloud.com\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}