Appodeal
This extension will create and sync Appodeal adunits in your Admob account.
Τι είναι το Appodeal;
Το Appodeal είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Appodeal Inc, και η κύρια λειτουργία του είναι "This extension will create and sync Appodeal adunits in your Admob account.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Appodeal
Λήψη αρχείων επέκτασης Appodeal σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
AdMob Sync Extension by Appodeal Elevate Your Ad Management with Integration Between AdMob and Appodeal What is AdMob Sync? AdMob Sync, developed by Appodeal, is an advanced Chrome extension designed to simplify your ad management process. This extension empowers users by allowing Appodeal to securely access AdMob reports through API integration. Additionally, it automatically creates new ad units in AdMob, submitting them to your Appodeal dashboard. Why Choose AdMob Sync? - Intelligent Integration: Sync your AdMob data directly to your Appodeal account. - Automated Ad Units Creation: New AdMob ad units are dynamically created and instantly replicated on your Appodeal dashboard. - Data Accuracy: Attain unmatched precision in your data metrics and receive real-time revenue reporting. Key Features ✓ Real-Time Data Syncing ✓ Dynamic Ad Unit Creation ✓ Optimized Ad Management How it Works 1. Install the Extension: Simply add the AdMob Sync extension to your Chrome browser. 2. Authenticate: Securely log in to both your AdMob and Appodeal accounts. 3. Initiate Syncing: Activate the extension and witness your ad management evolve into a streamlined, revenue-optimized process. Take your ad management to the next level with AdMob Sync by Appodeal. Install now for a seamless, efficient ad management experience.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Appodeal |
ID | ajjgfcnjagcnnhjemgaobibbalkjklhd |
Επίσημο URL | https://chromewebstore.google.com/detail/appodeal/ajjgfcnjagcnnhjemgaobibbalkjklhd |
Περιγραφή | This extension will create and sync Appodeal adunits in your Admob account. |
Μέγεθος Αρχείου | 1.3 MB |
Αριθμός Εγκαταστάσεων | 290 |
Τρέχουσα Έκδοση | 1.0.5 |
Τελευταία Ενημέρωση | 2024-02-07 |
Ημερομηνία Δημοσίευσης | 2023-10-30 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Appodeal Inc |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://appodeal.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://appodeal.com/contact/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Appodeal", "short_name": "Appodeal Admob Sync", "description": "This extension will create and sync Appodeal adunits in your Admob account.", "minimum_chrome_version": "100", "version": "1.0.5", "action": { "default_icon": { "16": "img\/icon\/icon-16.png" }, "default_popup": "popup.html" }, "icons": { "16": "img\/icon\/icon-16.png", "32": "img\/icon\/icon-32.png", "64": "img\/icon\/icon-64.png", "128": "img\/icon\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.appodeal.com\/admob_plugin\/api\/v3\/oauth\/success" ], "js": [ "oauth-success-content-script.js" ] }, { "matches": [ "https:\/\/console.developers.google.com\/*" ], "js": [ "sentry.js", "js\/vendor\/jquery.min.js", "js\/bundle.js", "js\/utils.js", "js\/modal.js" ], "css": [ "css\/modal.console.css" ] }, { "matches": [ "https:\/\/apps.admob.com\/*" ], "js": [ "sentry.js", "js\/vendor\/jquery.min.js", "js\/utils.js", "js\/modal.js", "admob-content-script.js" ], "css": [ "css\/modal.css" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "cookies", "notifications" ], "host_permissions": [ "*:\/\/*.appodeal.com\/*", "*:\/\/*.admob.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.admob.com\/*" ] } } |