EE Extras - Snapshots

Allows you to take snapshots of your portfolios on the EasyEquities website.

EE Extras - Snapshotsคืออะไร?

EE Extras - Snapshots เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gareth Stephenson และคุณลักษณะหลักของมันคือ "Allows you to take snapshots of your portfolios on the EasyEquities website."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EE Extras - Snapshots

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

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

                        Take snapshots of your EasyEquities portfolios and view your account performance over time!
See which of your portfolios are performing better than the other.

Permissions required by this extension:
• Access to the EasyEquities platform in order to provide the features listed above
• Access to EE-Extras.net in order to download settings needed by the extension (like API keys, etc.)
• Access to the EE-Extras.net API in order to store and return data for your portfolios

A note on privacy and this extension:
This extension does not collect any personally identifiable data. Your account information is securely one-way hashed, so there is no way to link the data collected back to any personal information of yours. There is no user tracking logic. This extension has been reviewed by the technical team at EasyEquities, and they have access to the source code.                    

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

ชื่อ EE Extras - Snapshots EE Extras - Snapshots
ID jaalaanmbacbhhomhpejmjjiompimhbo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ee-extras-snapshots/jaalaanmbacbhhomhpejmjjiompimhbo
คำอธิบาย Allows you to take snapshots of your portfolios on the EasyEquities website.
ขนาดไฟล์ 89.64 KB
จำนวนการติดตั้ง 46
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2024-01-25
วันที่เผยแพร่ 2021-12-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Gareth Stephenson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ee-extras.net
URL หน้านโยบายความเป็นส่วนตัว https://www.freeprivacypolicy.com/live/ea3fab6a-c55a-4aa2-ac1e-dc4eb6ab6831
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "version": "1.2",
    "author": "Gareth Stephenson",
    "icons": {
        "16": "img\/16px.png",
        "48": "img\/48px.png",
        "128": "img\/128px.png"
    },
    "action": {
        "default_icon": {
            "16": "img\/16px.png",
            "48": "img\/48px.png",
            "128": "img\/128px.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "EasyEquities Extras - Snapshots"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.png",
                "*.svg",
                "*.json",
                "popup\/popup.html"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/platform.easyequities.io\/AccountOverview"
            ],
            "js": [
                "common.js",
                "contentscript.js"
            ],
            "css": [
                "styles.css",
                "slider.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/api.ee-extras.net\/snapshots",
        "https:\/\/ee-extras.net\/flags.json"
    ]
}