Reddit-Sidebar-Hider
This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…
Cos'è Reddit-Sidebar-Hider?
Reddit-Sidebar-Hider è un'estensione di Chrome sviluppata da Nick Chirico, e la sua funzione principale è "This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit-Sidebar-Hider
Scarica i file di estensione Reddit-Sidebar-Hider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click the icon in the chrome extension menu. Preferences are stored, and used on each Reddit page load. Source code can be found at https://github.com/kiddico/Reddit-Sidebar-Hider
Informazioni di Base sull'Estensione
Nome | Reddit-Sidebar-Hider |
ID | aipfmjljjkiepeocilaillicdohnkehp |
URL Ufficiale | https://chromewebstore.google.com/detail/reddit-sidebar-hider/aipfmjljjkiepeocilaillicdohnkehp |
Descrizione | This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click… |
Dimensione del File | 18.06 KB |
Conteggio Installazioni | 17 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2017-01-07 |
Data di Pubblicazione | 2017-01-06 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Nick Chirico |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kiddico/Reddit-Sidebar-Hider |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit-Sidebar-Hider", "version": "1.4", "permissions": [ "storage", "tabs", "https:\/\/www.reddit.com\/*", "http:\/\/www.reddit.com\/*" ], "icons": { "16": "images\/16_icon.png", "32": "images\/32_icon.png", "64": "images\/64_icon.png", "128": "images\/128_icon.png" }, "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/www.reddit.com\/*", "http:\/\/www.reddit.com\/*", "http:\/\/np.reddit.com\/*", "https:\/\/np.reddit.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "images\/128_icon.png", "default_title": "Toggle Reddit Sidebar" }, "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "externally_connectable": { "ids": [ "*" ], "matches": [ "https:\/\/www.reddit.com\/*", "http:\/\/www.reddit.com\/*", "http:\/\/np.reddit.com\/*", "https:\/\/np.reddit.com\/*" ] }, "web_accessible_resources": [ "images\/*.png" ] } |