EE Extras
Adds a few functional features to the EasyEquities website.
EE Extrasคืออะไร?
EE Extras เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gareth Stephenson และคุณลักษณะหลักของมันคือ "Adds a few functional features to the EasyEquities website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EE Extras
ดาวน์โหลดไฟล์ส่วนขยาย EE Extras ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Allows registered users on the EasyEquities platform to: • Blur the monetary value of their holdings so they can share their screens without exposing their invested amounts • Sort the Purchase Value, Current Value, Current Price and Profit/Loss (value and percentage) columns of their DIY Shares • See extra Account Overview information, like number of shares, 1 month return, average purchase price and daily change, without having to click through • See the Rand value of your USD, AUD, EUR and GBP amounts on the Account Overview page • Prevent your session from expiring after long periods of inactivity • Export your holdings to a CSV file • See JSE SENS announcements linked to your ZAR holdings Permissions required by this extension: • Access to the EasyEquities platform in order to provide the features listed above • Access to the currency conversion API used provide Rand values on your USD, AUD, EUR and GBP accounts • Access to EE-Extras.net in order to download settings needed by the extension (like API keys, etc.) A note on privacy and this extension: This extension does not collect any personally identifiable data. 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. Removal of portfolio snapshots: We heard your feedback! The ability to take snapshots of your portfolios has been removed from this extension. If you would still like to use this functionality, please download the EE Extras - Snapshots extension. If there are other features you'd like this extension to provide, please reach out and I'll see if it's possible.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | EE Extras |
ID | fjomjjhigccfjmfickjgpmoepphmnofe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ee-extras/fjomjjhigccfjmfickjgpmoepphmnofe |
คำอธิบาย | Adds a few functional features to the EasyEquities website. |
ขนาดไฟล์ | 69 KB |
จำนวนการติดตั้ง | 352 |
เวอร์ชันปัจจุบัน | 1.2.3 |
อัปเดตครั้งล่าสุด | 2024-01-25 |
วันที่เผยแพร่ | 2020-11-24 |
คะแนน | 5.00/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | Gareth Stephenson |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
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.3", "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" }, "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" ], "host_permissions": [ "https:\/\/heq4s7r6ri2jn2b3vzxnskxasu0xmrhu.lambda-url.af-south-1.on.aws\/", "https:\/\/api.currconv.com\/api\/v7\/convert", "https:\/\/ee-extras.net\/flags.json" ] } |