Tangerine+

This extension modifies webpages on the Tangerine bank website to make it more useful.

Tangerine+ là gì?

Tangerine+ là một tiện ích mở rộng Chrome được phát triển bởi un_ordinateur, và tính năng chính của nó là "This extension modifies webpages on the Tangerine bank website to make it more useful.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tangerine+

Tải xuống các tệp mở rộng Tangerine+ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This Chrome extension inserts itself into Tangerine's web pages to enhance their features.

Here are the enhancements currently implemented:

1. On the main page of an account, the extension adds the following informations:
- For each investment account, the investment fund in it. (Normally, the website only shows the account number, and if it is a TFSA, an RSP, of an ordinary account.)

2. On the page of a fund, the extension adds the following informations:
- The true yeild of the fund for the money deposited by the client.
- The total amount of deposits and withdrawals since the account opening.

3. On the page of a checking account, the extension adds the following informations:
- For each email transfer, the extension adds an icon to show if the transfer is waiting, has been successfully completed, of has failed.
- A link to a new page, that shows a list of all email transfers pending.

4. On the page presenting the Tangerine Investment Funds (in the unsecured section of the site), the extension adds the following informations:
- A chart to compare the performance of each funds.

5. On the pages of checking and saving accounts, the extension adds a button to show up to 50 transactions per page. (By default, the website shows 10.)

Changelog:

Version 1 - 2014
 - Initial release
 - No changelog has been kept for versions 1 to 3.

Version 4 - April 7th, 2017
 - Added support for the Dividends Investment funds.
 - The funds performance chart can now be normalised.
 
Version 4.1 - April 10th, 2017
 - Bugfix in the pending email transfers
 - Bugfix in the presentation of the funds yield
 - When a fund is less old than some performance milestone age, the corresponding milestones are left blank.
 - A fund yeil is now computed up to the date "as of" reported by Tangerine, instead of the time the webpage is shown.
 - Bugfix in the treatment of dates (timezones)
 - Enhances description of the extension in the Chrome Store.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tangerine+ Tangerine+
ID abbhjehflinbppbeeoppnpjfcodpccbp
URL Chính Thức https://chromewebstore.google.com/detail/tangerine+/abbhjehflinbppbeeoppnpjfcodpccbp
Mô tả This extension modifies webpages on the Tangerine bank website to make it more useful.
Kích Thước Tệp 90.12 KB
Số Lần Cài Đặt 87
Phiên Bản Hiện Tại 4.1
Cập Nhật Lần Cuối 2017-04-10
Ngày Phát Hành 2017-04-10
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển un_ordinateur
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tangerine+",
    "description": "__MSG_appDesc__",
    "version": "4.1",
    "default_locale": "en",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/secure.tangerine.ca\/*",
        "*:\/\/api.morningstar.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/secure.tangerine.ca\/web\/Tangerine.html?*command=displayAccountDetails*"
            ],
            "js": [
                "include\/jquery.min.js",
                "strings.js",
                "common.js",
                "displayAccountDetails1.js",
                "displayAccountDetails2.js"
            ],
            "css": [
                "include\/font-awesome.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/secure.tangerine.ca\/web\/Tangerine.html?*command=displayEmailMoneyTransferDetails*"
            ],
            "js": [
                "include\/jquery.min.js",
                "strings.js",
                "common.js",
                "displayEmailMoneyTransferDetails.js"
            ],
            "css": [
                "include\/font-awesome.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/secure.tangerine.ca\/web\/Tangerine.html?*command=displayMutualFundAccount*"
            ],
            "js": [
                "include\/jquery.min.js",
                "strings.js",
                "common.js",
                "displayMutualFundAccount.js"
            ],
            "css": [
                "include\/font-awesome.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/secure.tangerine.ca\/web\/Tangerine.html?*command=displayAccountSummary*"
            ],
            "js": [
                "include\/jquery.min.js",
                "strings.js",
                "common.js",
                "displayAccountSummary.js"
            ],
            "css": [
                "include\/font-awesome.min.css"
            ]
        },
        {
            "matches": [
                "http:\/\/www.tangerine.ca\/*\/investing\/performance\/index.html*",
                "https:\/\/www.tangerine.ca\/*\/investing\/performance\/index.html*"
            ],
            "js": [
                "include\/jquery.min.js",
                "include\/jquery.flot.min.js",
                "include\/jquery.flot.autosizevisible.js",
                "include\/jquery.flot.crosshair.js",
                "include\/jquery.flot.hiddengraphs.js",
                "include\/jquery.flot.legendhighlight.js",
                "include\/jquery.flot.navigate.min.js",
                "include\/jquery.flot.rangeselection.js",
                "include\/jquery.flot.resize.min.js",
                "include\/jquery.flot.time.min.js",
                "strings.js",
                "common.js",
                "performance.js"
            ],
            "css": [
                "include\/font-awesome.min.css"
            ]
        }
    ],
    "minimum_chrome_version": "28"
}