New York Times Byline Restorer
Restores author bylines to the New York Times homepage and section pages
Τι είναι το New York Times Byline Restorer;
Το New York Times Byline Restorer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://danstillman.com, και η κύρια λειτουργία του είναι "Restores author bylines to the New York Times homepage and section pages".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης New York Times Byline Restorer
Λήψη αρχείων επέκτασης New York Times Byline Restorer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The New York Times removed bylines from its homepage and section pages in August 2018. This adds them back. It can also optionally remove the “x min read” lines added to the homepage in September 2022.
Βασικές Πληροφορίες Επέκτασης
Όνομα | New York Times Byline Restorer |
ID | gfiejlblkeelpnbmknocgaedclbimdja |
Επίσημο URL | https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja |
Περιγραφή | Restores author bylines to the New York Times homepage and section pages |
Μέγεθος Αρχείου | 27.62 KB |
Αριθμός Εγκαταστάσεων | 827 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2022-09-18 |
Ημερομηνία Δημοσίευσης | 2019-10-10 |
Αξιολόγηση | 5.00/5 Συνολικά 12 Αξιολογήσεις |
Προγραμματιστής | https://danstillman.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/dstillman/nyt-byline-restorer |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New York Times Byline Restorer", "description": "Restores author bylines to the New York Times homepage and section pages", "manifest_version": 2, "version": "2.0.0", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/" ], "js": [ "start.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.nytimes.com\/*" ], "js": [ "bylines.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "https:\/\/*.nytimes.com\/*", "storage" ], "web_accessible_resources": [ "styleStart.css", "announcement1.html" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |