Hide Reddit Sidebar
Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…
Τι είναι το Hide Reddit Sidebar;
Το Hide Reddit Sidebar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ni.moran73, και η κύρια λειτουργία του είναι "Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hide Reddit Sidebar
Λήψη αρχείων επέκτασης Hide Reddit Sidebar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches " reddit.com/r/* " I created this so that nested comments would not squish when Reddit is open in a thin window. The sidebar will NOT be hidden on the Reddit homepage, because this sidebar does not interfere with Redditing. Some custom subreddit styles will stop the sidebar from being hidden. If you are using RES, you can solve this problem by unchecking 'Use subreddit style' in the sidebar.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Hide Reddit Sidebar |
ID | iielklgejhjdhlmeokbhamkbiolmdhmm |
Επίσημο URL | https://chromewebstore.google.com/detail/hide-reddit-sidebar/iielklgejhjdhlmeokbhamkbiolmdhmm |
Περιγραφή | Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "… |
Μέγεθος Αρχείου | 16.01 KB |
Αριθμός Εγκαταστάσεων | 217 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2015-12-09 |
Ημερομηνία Δημοσίευσης | 2015-12-08 |
Αξιολόγηση | 4.63/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | ni.moran73 |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Reddit Sidebar", "version": "0.1", "page_action": { "default_title": "Hide Sidebar", "default_icon": "closed.png" }, "background": { "scripts": [ "hide-sidebar-eventpage.js" ], "persitant": false }, "content_scripts": [ { "matches": [ "https:\/\/www.reddit.com\/r\/*" ], "js": [ "hide-sidebar-content.js" ] } ], "permissions": [ "declarativeContent", "activeTab" ] } |