Twitter Web - Night Mode
Android/iOS like night mode for twitter web app
Τι είναι το Twitter Web - Night Mode;
Το Twitter Web - Night Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://tsriram.in, και η κύρια λειτουργία του είναι "Android/iOS like night mode for twitter web app".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitter Web - Night Mode
Λήψη αρχείων επέκτασης Twitter Web - Night Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Twitter's mobile app for Android and iOS has a night mode which has a dark theme. It is not available for the twitter web app yet. This extension brings the night mode to web. Night mode is enabled by default and it can be switched to the default theme by clicking on the twitter icon that shows up in the tool bar when you visit twitter.com. From version 0.0.4, this extension applies the night mode to theme to all twitter pages. Of course, would appreciate any donation - https://www.paypal.me/tsriram :-) If you see some dark text that are hardly visible on dark mode, you might have to change your twitter theme from "Edit Profile" page. This extension *does not* access your personal data. I wrote about it here - http://tsriram.in/2016/08/24/bringing-twitter-night-mode-to-web/ Please feel free to report issues and share feedback here - https://github.com/tsriram/twitter-web-night-mode/issues Update v0.0.8 (Jan 10, 2017): - This update prevents user selected theme color from being applied to certain elements as some theme colors do not work well with the night mode. - Have also added a short survey which will open when someone uninstalls the extension. Feel free to close it.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cadmiljohldbooihfbkjkobepojailca |
Επίσημο URL | https://chrome.google.com/webstore/detail/twitter-web-night-mode/cadmiljohldbooihfbkjkobepojailca |
Περιγραφή | Android/iOS like night mode for twitter web app |
Μέγεθος Αρχείου | 21.91 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 0.0.21 |
Τελευταία Ενημέρωση | 2017-09-24 |
Ημερομηνία Δημοσίευσης | 2017-09-24 |
Αξιολόγηση | 4.35/5 Συνολικά 246 Αξιολογήσεις |
Προγραμματιστής | http://tsriram.in |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Web - Night Mode", "version": "0.0.21", "description": "Android\/iOS like night mode for twitter web app", "homepage_url": "https:\/\/github.com\/tsriram\/twitter-web-night-mode", "background": { "scripts": [ "js\/twitter-night-mode-bg.js" ] }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon32.png", "default_title": "Extension will be enabled when you open twitter.com" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/twitter.com\/", "https:\/\/twitter.com\/i\/cards\/*" ], "js": [ "js\/twitter-night-mode.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "https:\/\/twitter.com\/" ], "js": [ "js\/notification.js" ], "all_frames": false, "run_at": "document_end" } ], "web_accessible_resources": [ "css\/main.css" ], "permissions": [ "https:\/\/twitter.com\/", "tabs", "storage" ], "author": "Sriram Thiagarajan" } |