Ekata Deep Link Builder
Deep link builder extension for Ekata Pro Insight.
Τι είναι το Ekata Deep Link Builder;
Το Ekata Deep Link Builder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ekata, και η κύρια λειτουργία του είναι "Deep link builder extension for Ekata Pro Insight.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Ekata Deep Link Builder
Λήψη αρχείων επέκτασης Ekata Deep Link Builder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Deep link builder extension for Ekata Pro Insight. Ekata Deep Link Builder allows Pro Insight customers to perform Identity Review and Merchant Review queries with zero development effort. Deep Links consist of using a hyperlink that links to a specific, generally searchable or indexed, piece of web content (e.g. http://example.com/path/page), rather than the home page (e.g. http://example.com/). For manual review, this provides a simple, direct way to easily access Pro Insight results and autofill all inputs by clicking a link. The Deep Link Builder saves time, is easy to implement, and eliminates the need to copy and paste a customer’s name, address(es), phone(s), IP address, email address, and other search parameters into multiple search windows. Deep Link Builder allows you to: Access full Pro Insight Identity Review and Merchant Review results with a single click Get up and running with zero development effort Streamline user log-in with single sign-on (SSO) How it works: After downloading this extension, the account admin will need to create a one-time reusable template, which then allows any user to generate a query with a single click directly out of a proprietary platform and into Pro Insight. Need help or have questions on how to set up the extension? Contact your dedicated account manager or reach support at [email protected] to learn more. About Ekata Pro Insight: Pro Insight empowers manual review and underwritings teams to make faster and more accurate identity fraud decisions on a global scale. Get the full picture of an identity behind a transaction or application in a single view. Pro Insight is tailored for manual review agents to highlight the critical data points to simplify complex fraud decisions.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Ekata Deep Link Builder |
ID | pjhckahpondpikeekhbpgpgfgkkighfg |
Επίσημο URL | https://chromewebstore.google.com/detail/ekata-deep-link-builder/pjhckahpondpikeekhbpgpgfgkkighfg |
Περιγραφή | Deep link builder extension for Ekata Pro Insight. |
Μέγεθος Αρχείου | 506 KB |
Αριθμός Εγκαταστάσεων | 994 |
Τρέχουσα Έκδοση | 2.14.3 |
Τελευταία Ενημέρωση | 2024-01-24 |
Ημερομηνία Δημοσίευσης | 2020-04-21 |
Αξιολόγηση | 3.60/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Ekata |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://ekata.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://content.ekata.com/rs/756-OJA-475/images/Ekata_Deep_Links_Guide.pdf |
URL της Σελίδας Πολιτικής Απορρήτου | https://ekata.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ekata Deep Link Builder", "version": "2.14.3", "description": "Deep link builder extension for Ekata Pro Insight.", "action": { "default_title": "Deep Link Builder", "default_popup": "pages\/popup\/index.html" }, "icons": { "16": "images\/icon-enabled-16.png", "48": "images\/icon-enabled-48.png", "128": "images\/icon-enabled-128.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; style-src * 'unsafe-inline' 'self' blob:; img-src 'self' data:" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*\/*__*" ], "js": [ "content\/import-index.js" ], "css": [ "content\/content-script.css" ], "run_at": "document_end", "all_frames": false } ], "background": { "service_worker": "background.js", "type": "module" }, "web_accessible_resources": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "resources": [ "content\/index.js", "content\/inject.html", "images\/icon-enabled-16.png", "images\/icon-enabled-48.png", "images\/icon-enabled-128.png", "images\/icon-disabled-16.png", "images\/icon-disabled-48.png", "images\/icon-disabled-128.png" ] }, { "resources": [ "chunks\/*-*.js", "content\/index.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "permissions": [ "tabs", "storage" ], "minimum_chrome_version": "91", "incognito": "split" } |