Latest News Loader
This extension helps you simply read the world news. All you need to do is to select a keyword
Τι είναι το Latest News Loader;
Το Latest News Loader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον florance.co.media, και η κύρια λειτουργία του είναι "This extension helps you simply read the world news. All you need to do is to select a keyword".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Latest News Loader
Λήψη αρχείων επέκτασης Latest News Loader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Latest News Loader is a browser extension that keeps you up-to-date with the latest news from around the world. With this extension, you can easily access the top 10 news stories of the day directly from your browser. Simply click on the extension icon to see a list of the latest headlines and click on any of them to read the full article. Stay informed and never miss a beat with Latest News Loader!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cjjiphmgiokbapplkebjnbmefhhnedef |
Επίσημο URL | https://chrome.google.com/webstore/detail/latest-news-loader/cjjiphmgiokbapplkebjnbmefhhnedef |
Περιγραφή | This extension helps you simply read the world news. All you need to do is to select a keyword |
Μέγεθος Αρχείου | 13.81 KB |
Αριθμός Εγκαταστάσεων | 451 |
Τρέχουσα Έκδοση | 1 |
Τελευταία Ενημέρωση | 2022-12-21 |
Ημερομηνία Δημοσίευσης | 2022-12-21 |
Προγραμματιστής | florance.co.media |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://home.reportionbreedy.xyz/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://home.reportionbreedy.xyz/contact.html |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "Latest News Loader", "default_popup": "popup.html" }, "description": "This extension helps you simply read the world news. All you need to do is to select a keyword", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "Latest News Loader", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "icons\/*.svg" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "host_permissions": [ "*:\/\/*\/*" ] } |