Gridoid for Twitter and YouTube
Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.
Τι είναι το Gridoid for Twitter and YouTube;
Το Gridoid for Twitter and YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://gridoid.com, και η κύρια λειτουργία του είναι "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gridoid for Twitter and YouTube
Λήψη αρχείων επέκτασης Gridoid for Twitter and YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
If you spend time on Twitter, YouTube, or Reddit, check out this offering of changing your user experience. I've made changes to make the user experience better and more rewarding. Much of the display has been condensed, give it a shot. Turn your Twitter feed and YouTube comments into a grid layout. Twitter Features: - Two or three column of tweets depending on screen size. - Shrunk header for quicker tweet reading. YouTube Features: - Two column comments. - Adjusted comment display to make comment text easier to read. - Emojis are added to show relationship between reply and target of reply. - Replies to the original comment thread start and end with 🔘
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | bhicedmcbjmeppeannndieioafaglmeg |
Επίσημο URL | https://chrome.google.com/webstore/detail/gridoid-for-twitter-and-y/bhicedmcbjmeppeannndieioafaglmeg |
Περιγραφή | Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience. |
Μέγεθος Αρχείου | 34.08 KB |
Αριθμός Εγκαταστάσεων | 70 |
Τρέχουσα Έκδοση | 0.0.0.15 |
Τελευταία Ενημέρωση | 2018-10-24 |
Ημερομηνία Δημοσίευσης | 2018-10-24 |
Αξιολόγηση | 2.43/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | http://gridoid.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://gridoid.com |
URL της Σελίδας Πολιτικής Απορρήτου | https://gridoid.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gridoid for Twitter and YouTube", "version": "0.0.0.15", "manifest_version": 2, "description": "Grid layout for Twitter and YouTube, switch on\/off with simple button; use for a better user experience.", "background": { "scripts": [ "GridoidBackground.js", "onInstalled.js" ], "persistent": false }, "permissions": [ "https:\/\/*.youtube.com\/*", "https:\/\/*.twitter.com\/*", "activeTab", "storage", "tabs" ], "icons": { "128": "icon128.png" }, "browser_action": { "default_title": "Gridoid", "default_popup": "popup.html", "default_icon": "Logo.png" }, "content_scripts": [ { "js": [ "YouGridContent.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] }, { "css": [ "TwitterGridStyles.css" ], "js": [ "bricks.js", "TwitterGridContent.js" ], "matches": [ "https:\/\/*.twitter.com\/*" ], "exclude_matches": [ "https:\/\/mobile.twitter.com\/*" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "bricks.js", "TwitterGridScript.js", "onInstalled.js", "TwitterGridStyles.css", "YouGridStyles.css", "YouGridScript.js", "LogoOff.png", "Logo.png", "light_noisy_grid.jpg" ] } |