Procurios Platform
This extension is for users of the Procurios Platform.
Τι είναι το Procurios Platform;
Το Procurios Platform είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://procurios.com, και η κύρια λειτουργία του είναι "This extension is for users of the Procurios Platform.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Procurios Platform
Λήψη αρχείων επέκτασης Procurios Platform σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
With this extension you can manage your Procurios Platform quickly and efficiently. Do you want to quickly make a change to a blog post or form on your website? This extension is always visible in your browser and will take you to the right place in your platform. In addition, you can easily save emails as a contact moment in your CRM from Gmail. The Procurios Platform extension offers this functionality: - Go directly to your Procurios Platform. - Add an e-mail as a contact moment to the CRM directly from Gmail. - Go directly to the CMS to edit the current page. - Go directly to the backend to edit an item on the page. - Go to the overview of users to impersonate someone else.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Procurios Platform |
ID | kljnpjnncbkiaihadjlojnbakjlegfef |
Επίσημο URL | https://chromewebstore.google.com/detail/procurios-platform/kljnpjnncbkiaihadjlojnbakjlegfef |
Περιγραφή | This extension is for users of the Procurios Platform. |
Μέγεθος Αρχείου | 374 KB |
Αριθμός Εγκαταστάσεων | 494 |
Τρέχουσα Έκδοση | 2.1.4 |
Τελευταία Ενημέρωση | 2024-01-16 |
Ημερομηνία Δημοσίευσης | 2020-03-10 |
Αξιολόγηση | 5.00/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | https://procurios.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.procurios.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | http://support.procurios.com/ |
Υποστηριζόμενες Γλώσσες | en,nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "short_name": "Procurios", "version": "2.1.4", "description": "__MSG_extDescription__", "minimum_chrome_version": "10.0", "default_locale": "en", "icons": { "16": "assets\/icon-active16.png", "32": "assets\/icon-active32.png", "48": "assets\/icon-active48.png", "128": "assets\/icon-active128.png" }, "browser_action": { "default_icon": { "16": "assets\/icon-inactive16.png", "32": "assets\/icon-inactive32.png", "48": "assets\/icon-inactive48.png" }, "default_title": "__MSG_extName__", "default_popup": "popup\/html\/popup-login.html" }, "background": { "scripts": [ "background\/background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "content\/gmail.js" ], "matches": [ "*:\/\/mail.google.com\/*" ], "run_at": "document_start" } ], "permissions": [ "activeTab", "storage", "*:\/\/*\/*", "webRequest", "webRequestBlocking" ], "web_accessible_resources": [ "assets\/*", "content\/saveContactMoment.js" ] } |