Reddit-Sidebar-Hider
This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…
Qu'est-ce que Reddit-Sidebar-Hider ?
Reddit-Sidebar-Hider est une extension Chrome développée par Nick Chirico, et sa fonction principale est "This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reddit-Sidebar-Hider
Téléchargez les fichiers d'extension Reddit-Sidebar-Hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Reddit-Sidebar-Hider |
ID | aipfmjljjkiepeocilaillicdohnkehp |
URL Officiel | https://chromewebstore.google.com/detail/reddit-sidebar-hider/aipfmjljjkiepeocilaillicdohnkehp |
Description | This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click… |
Taille du Fichier | 18.06 KB |
Nombre d'Installations | 17 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2017-01-07 |
Date de Publication | 2017-01-06 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Nick Chirico |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/kiddico/Reddit-Sidebar-Hider |
Langues Prises en Charge | 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" ] } |