Adstxter – Ads.txt Seller Tester
Check your sellers’ ads.txt authorization on any website
Τι είναι το Adstxter – Ads.txt Seller Tester;
Το Adstxter – Ads.txt Seller Tester είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lusitdev, και η κύρια λειτουργία του είναι "Check your sellers’ ads.txt authorization on any website".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Adstxter – Ads.txt Seller Tester
Λήψη αρχείων επέκτασης Adstxter – Ads.txt Seller Tester σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Adstxter is a lightweight tool for detecting missing sellers in ads.txt files. It provides a one-click test for the presence of specified sellers. The test is run on the currently open site. Sellers for testing are defined in the input field of the Adstxter window. Entered sellers are saved across browser sessions until replaced or removed. Adstxter is inactive and not using system resources when its window is not open. This ensures minimal system load and no intrusion into the browser usage. The implementation of the testing follows the IAB Tech Lab's ads.txt specification. Checking ads.txt files on subdomains is currently not implemented. Source code available on https://github.com/lusitdev/Adstxter
Βασικές Πληροφορίες Επέκτασης
Όνομα | Adstxter – Ads.txt Seller Tester |
ID | ncdnbcbfjcflaocmpnhjajngpdoipnci |
Επίσημο URL | https://chromewebstore.google.com/detail/adstxter-%E2%80%93-adstxt-seller/ncdnbcbfjcflaocmpnhjajngpdoipnci |
Περιγραφή | Check your sellers’ ads.txt authorization on any website |
Μέγεθος Αρχείου | 79.94 KB |
Αριθμός Εγκαταστάσεων | 34 |
Τρέχουσα Έκδοση | 0.1.0 |
Τελευταία Ενημέρωση | 2020-12-02 |
Ημερομηνία Δημοσίευσης | 2020-07-31 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | lusitdev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/lusitdev/Adstxter |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Adstxter \u2013 Ads.txt Seller Tester", "short_name": "Adstxter", "version": "0.1.0", "description": "Check your sellers\u2019 ads.txt authorization on any website", "icons": { "48": "images\/48.png", "128": "128.png" }, "permissions": [ "activeTab", "storage", "*:\/\/*\/ads.txt", "https:\/\/publicsuffix.org\/list\/public_suffix_list.dat" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Adstxter", "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png" } }, "content_security_policy": "default-src 'self'; connect-src http:\/\/*\/ads.txt https:\/\/*\/ads.txt https:\/\/publicsuffix.org\/list\/public_suffix_list.dat" } |