Rapunzel

This extension shows a company search result for the current page

Was ist Rapunzel?

Rapunzel ist eine Chrome-Erweiterung, die von https://finactum.be entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows a company search result for the current page".

Erweiterungsscreenshots

screenshot
screenshot

Rapunzel-Erweiterungs-CRX-Datei herunterladen

Laden Sie Rapunzel-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Rapunzel by Financtum ™ is a Chrome extension that tracks any valid Belgian company VAT identification on a browser page. Upon hoovering over the identified VAT string, a summary of company info and financial data is shown in the upper right corner of the screen. There are 4 blocks of information available: general company info, summary balance sheet info, a graph with financial performance and a list of directors. Each block can be set ON or OFF. The extension has also on itself a ON/OFF switch so it does not delay performance on pages where it is not relevant (such as e.g. LinkedIn pages). The resolution of the image can be adapted to the screen resolution. Rapunzel attaches a link to the identified string which -upon clicking- leads you to a detailed company information page at the Finactum site.                    

Grundlegende Informationen zur Erweiterung

Name Rapunzel Rapunzel
ID jjjdiibfooogchnodhaojfcgjaibnmcc
Offizielle URL https://chromewebstore.google.com/detail/rapunzel/jjjdiibfooogchnodhaojfcgjaibnmcc
Beschreibung This extension shows a company search result for the current page
Dateigröße 38.81 KB
Installationsanzahl 272
Aktuelle Version 0.99.0.1
Letztes Update 2017-05-16
Veröffentlichungsdatum 2017-05-16
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://finactum.be
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rapunzel",
    "description": "This extension shows a company search result for the current page",
    "version": "0.99.0.1",
    "background": {
        "page": "background.html"
    },
    "manifest_version": 2,
    "browser_action": {
        "name": "Info",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_title": "Rapunzel by Finactum v0.99",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.0.2.min.js",
                "jquery.safeReplace.js",
                "background.js"
            ],
            "css": [
                "customStyles.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "http:\/\/beta.finactum.com\/",
        "https:\/\/www.finactum.be\/",
        "storage"
    ],
    "options_page": "popup.html"
}