The Good Place
Replace new tab page with a personalized dashboard that brings your very own version of The Good Place right to your desktop.
Τι είναι το The Good Place;
Το The Good Place είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον NBC, και η κύρια λειτουργία του είναι "Replace new tab page with a personalized dashboard that brings your very own version of The Good Place right to your desktop.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης The Good Place
Λήψη αρχείων επέκτασης The Good Place σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Calling all Good Place fans! Make The Good Place your Chrome home with an all-new tab page that features your favorite characters, quotes and photos from the show. Complete with weather updates, calendar reminders, and daily “inspiration” from Eleanor and the crew, you can become more productive and feel like you’re getting into The Good Place every single time you go online. FEATURES: -Replace curse words from your Chrome with the Obscenities Censor -Search the web using your very own Janet -Pry yourself away from the internet with the “Joy of Missing Out” built-in break reminders -Replace “Thumbs up” and “Thumbs down” buttons on YouTube with “Good Place” and “Bad Place”
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | nenmjobnaijcgookbabhmiepjnojpmdl |
Επίσημο URL | https://chrome.google.com/webstore/detail/the-good-place/nenmjobnaijcgookbabhmiepjnojpmdl |
Περιγραφή | Replace new tab page with a personalized dashboard that brings your very own version of The Good Place right to your desktop. |
Μέγεθος Αρχείου | 15.04 MB |
Αριθμός Εγκαταστάσεων | 7,000 |
Τρέχουσα Έκδοση | 1.0.5 |
Τελευταία Ενημέρωση | 2019-10-01 |
Ημερομηνία Δημοσίευσης | 2019-10-01 |
Αξιολόγηση | 4.69/5 Συνολικά 65 Αξιολογήσεις |
Προγραμματιστής | NBC |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "The Good Place", "version": "1.0.5", "description": "Replace new tab page with a personalized dashboard that brings your very own version of The Good Place right to your desktop.", "manifest_version": 2, "icons": { "16": "img\/icons\/icon16.png", "48": "img\/icons\/icon48.png", "128": "img\/icons\/icon128.png" }, "background": { "scripts": [ "\/js\/background.js", "\/js\/OpenWeatherMap.js", "\/js\/features\/JoyOfMissingOut.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "chrome_url_overrides": { "newtab": "theme.html" }, "browser_action": { "default_icon": "img\/icons\/icon16.png", "default_popup": "popup.html" }, "permissions": [ "notifications", "tabs", "alarms", "storage", "http:\/\/*\/", "https:\/\/*\/" ], "web_accessible_resources": [ "img\/GoodPlaceBadPlace\/*", "img\/SearchWithJanet\/*", "fonts\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/js\/features\/ObscenitiesCensor.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/www.youtube.com\/", "https:\/\/www.youtube.com\/*" ], "js": [ "\/js\/features\/GoodPlaceBadPlace.js", "\/js\/features\/SearchWithJanet.js" ], "css": [ "\/css\/features\/GoodPlaceBadPlace.css" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/www.google.com\/", "https:\/\/www.google.com\/*", "https:\/\/www.google.ca\/", "https:\/\/www.google.ca\/*", "https:\/\/www.google.co.uk\/", "https:\/\/www.google.co.uk\/*", "https:\/\/www.google.com.au\/", "https:\/\/www.google.com.au\/*", "https:\/\/www.google.com.br\/", "https:\/\/www.google.com.br\/*" ], "exclude_matches": [ "https:\/\/www.google.com\/search*", "https:\/\/www.google.ca\/search*" ], "js": [ "\/js\/features\/SearchWithJanet.js" ], "css": [ "\/css\/features\/SearchWithJanet.css" ], "run_at": "document_start" } ] } |