Adobe Target VEC Helper
Load your website's desktop and mobile views effortlessly in Adobe Target with the VEC helper extension
Τι είναι το Adobe Target VEC Helper;
Το Adobe Target VEC Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Adobe Inc., και η κύρια λειτουργία του είναι "Load your website's desktop and mobile views effortlessly in Adobe Target with the VEC helper extension".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Adobe Target VEC Helper
Λήψη αρχείων επέκτασης Adobe Target VEC Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The VEC Helper browser extension for Chrome solves site-loading issues for which customers now rely on the Target Enhanced Experience Composer or third-party extensions. Benefits of using the VEC Helper extension: - All iframe busting headers, such as X-Frame-Options and Content-Security-Policy, are implicitly removed from the website. - If a webpage does not yet contain the Target at.js JavaScript library, you can use the extension to inject the library so you can author experiences for the website. You can then create activities and QA them using preview links. - Mobile Viewports are supported without the Enhanced Experience Composer (EEC). - Customers new to Target can use the extension to experiment with Target even if their IT developers have not yet implemented Target on their websites. - Partners servicing multiple customers' websites and Target accounts now have one simple mechanism to support VEC loading, instead of managing multiple rules in third-party tools. - With Chrome 80's change in the default behaviour of SameSite attribute for cookies. - Adobe Target - Visual Enhanced Composer functionality is fixed by adding the SameSite attribute to certain session cookies used by Adobe Target components. - Clients are now able to set the SameSite attribute to the value "None" for their own session cookies in order for them to be able to login while using VEC or EEC.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Adobe Target VEC Helper |
ID | ggjpideecfnbipkacplkhhaflkdjagak |
Επίσημο URL | https://chromewebstore.google.com/detail/adobe-target-vec-helper/ggjpideecfnbipkacplkhhaflkdjagak |
Περιγραφή | Load your website's desktop and mobile views effortlessly in Adobe Target with the VEC helper extension |
Μέγεθος Αρχείου | 546 KB |
Αριθμός Εγκαταστάσεων | 15,239 |
Τρέχουσα Έκδοση | 0.7.1 |
Τελευταία Ενημέρωση | 2021-11-15 |
Ημερομηνία Δημοσίευσης | 2019-11-15 |
Αξιολόγηση | 2.60/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | Adobe Inc. |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.adobe.com/privacy/policy.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Load your website's desktop and mobile views effortlessly in Adobe Target with the VEC helper extension", "version": "0.7.1", "name": "Adobe Target VEC Helper", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*.adobe.com\/content\/mac\/*\/target\/activities.html*", "https:\/\/*.adobe.com\/content\/mac\/*\/target\/activities.html*" ], "js": [ "content_top.js", "content_main.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "http:\/\/*\/*mboxEdit=1*", "https:\/\/*\/*mboxEdit=1*" ], "js": [ "content_client.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "http:\/\/*\/*adobe_authoring_enabled=1*", "https:\/\/*\/*adobe_authoring_enabled=1*" ], "js": [ "content_client.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "http:\/\/*\/*at_preview_token=*", "https:\/\/*\/*at_preview_token=*" ], "js": [ "content_top.js", "content_client.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "32": "icons\/icon32_grayscale.png", "38": "icons\/icon38_grayscale.png" }, "default_title": "Adobe Target VEC Helper", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "ui_components.js" ], "content_security_policy": "script-src 'self' https:\/\/use.typekit.net; object-src 'self'", "permissions": [ "storage", "activeTab", "webRequest", "webRequestBlocking", "webNavigation", "http:\/\/*\/*", "https:\/\/*\/*" ] } |