FCViz

Provides extra visualisations for Funding Circle pages

FCViz क्या है?

FCViz LoneRifle द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides extra visualisations for Funding Circle pages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FCViz एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        DISCLAIMER
Not endorsed nor supported by Funding Circle. FCViz adds third-party enhancements to the Funding Circle platform which may lose compatibility over time.

Code made available under MIT license.
This means author accepts NO responsibility for any consequences to any actions taken by Funding Circle users on the Funding Circle platform while using FCViz.

Find out more at http://github.com/LoneRifle/fcviz/

FEATURES
Bar charts and extra hidden bid table for bid summary tab

Scatter plot for all bids tab, plotting bid rate against time at 30 min intervals, with bid amount expressed as size of plot point, and extra info when clicked on

Summary info box for loan requests page, including bid summary

Filter on multiple risk bands for loan requests

See repayment schedule as timeseries graph

Cleaner financial summary for property pages

Buttons to quickly clear and globally apply markups on loan parts to sell

Improved loan parts controls

PRIVACY POLICY

This extension does not collect user-identifiable data, and has no need to for its functionality                    

एक्सटेंशन की मूल जानकारी

नाम FCViz FCViz
ID gillfmdmepnpbpfephfgommoeonnbfbm
आधिकारिक URL https://chromewebstore.google.com/detail/fcviz/gillfmdmepnpbpfephfgommoeonnbfbm
विवरण Provides extra visualisations for Funding Circle pages
फ़ाइल का आकार 272 KB
स्थापना संख्या 40
वर्तमान संस्करण 4.0.1
अंतिम अपडेट 2019-03-09
प्रकाशन तिथि 2019-03-08
रेटिंग 5.00/5 कुल 7 रेटिंग्स
डेवलपर LoneRifle
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://github.com/LoneRifle/fcviz/
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FCViz",
    "description": "Provides extra visualisations for Funding Circle pages",
    "version": "4.0.1",
    "icons": {
        "48": "png\/favicon48.png",
        "128": "png\/favicon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.fundingcircle.com\/loans\/*\/auction"
            ],
            "css": [
                "css\/fcviz.css"
            ],
            "js": [
                "js\/injector.js",
                "js\/auctionresources.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.fundingcircle.com\/loans\/*\/financial_summary"
            ],
            "css": [
                "css\/fcviz.css"
            ],
            "js": [
                "js\/injector.js",
                "js\/loanfinancesummaryresources.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.fundingcircle.com\/investors\/portfolio*"
            ],
            "css": [
                "css\/fcviz.css"
            ],
            "js": [
                "js\/injector.js",
                "js\/summaryresources.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "css\/market.css",
        "css\/fcviz.css",
        "css\/c3.min.css",
        "css\/chosen.min.css",
        "css\/datatables.min.css",
        "js\/chosen\/chosen.jquery.min.js",
        "js\/chosen\/chosen-sprite.png",
        "js\/chosen\/[email protected]",
        "js\/d3.min.js",
        "js\/c3.min.js",
        "js\/datatables.min.js",
        "js\/consolidateaccounts.js",
        "js\/propertylayout.js",
        "js\/addmultichecktoangularmodule.js",
        "js\/loanfinancesummary.js",
        "js\/deferbootstrap.js",
        "js\/auction.js",
        "js\/requests.js",
        "js\/summary.js",
        "js\/sell.js",
        "js\/forsale.js",
        "js\/market.js",
        "js\/waitforlogin.js",
        "js\/advancedloanparts.js",
        "js\/loanpartcomments.js",
        "js\/myloanparts.js",
        "js\/portfoliosummarygraph.js",
        "js\/repaymentgraph.js"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.fundingcircle.com\/lend\/loan-requests\/download\/*",
        "https:\/\/d2ondqc76inyu3.cloudfront.net\/shared_assets\/js\/shared_assets.js",
        "https:\/\/wa.fundingcircle.com\/dc.min.js"
    ]
}