companion for reddit
Turn your browser into a redditor's best friend.
Qu'est-ce que companion for reddit ?
companion for reddit est une extension Chrome développée par Toolbox development team, et sa fonction principale est "Turn your browser into a redditor's best friend.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension companion for reddit
Téléchargez les fichiers d'extension companion for reddit 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 is a modified version of the official reddit companion which can be found here: https://chrome.google.com/webstore/detail/reddit-companion/algjnflpgoopkdijmkalfcifomdhmcbe This version fixes some long outstanding bugs and adds some new things: - https support: should work on (more) https pages now. - notifications work again: the old companion used an outdated call. - design tweaks: Less shadows, less gradients, less rounded corners. Todo: - Update the notifications to have a better suited icon that is not blurred out. - Add support for moderation related tasks. - Possibly integrate these with the moderator toolbox extension.
Informations de Base sur l'Extension
Nom | companion for reddit |
ID | hjndgefhmfcgpoocjcgoemphhdkbhipm |
URL Officiel | https://chromewebstore.google.com/detail/companion-for-reddit/hjndgefhmfcgpoocjcgoemphhdkbhipm |
Description | Turn your browser into a redditor's best friend. |
Taille du Fichier | 95.58 KB |
Nombre d'Installations | 1,166 |
Version Actuelle | 2.0.4 |
Dernière Mise à Jour | 2016-06-21 |
Date de Publication | 2016-06-21 |
Évaluation | 4.61/5 Total 23 Évaluations |
Développeur | Toolbox development team |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/creesch/reddit-companion |
URL de la Page de Politique de Confidentialité | https://www.reddit.com/r/toolbox/wiki/privacy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "companion for reddit", "version": "2.0.4", "manifest_version": 2, "description": "Turn your browser into a redditor's best friend.", "options_page": "options.html", "permissions": [ "tabs", "notifications", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "default-src 'self'; connect-src 'self' https:\/\/*.reddit.com; connect-src 'self' http:\/\/*.reddit.com; style-src 'self' 'unsafe-inline'; script-src 'self'", "icons": { "16": "images\/shine-16.png", "48": "images\/shine-48.png", "128": "images\/shine-128.png" }, "background": { "page": "background.html" }, "page_action": { "default_icon": "images\/reddit.png", "default_title": "Show reddit information" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "debug.js", "redditContent.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "debug.js", "pageOverlay.js" ] } ], "web_accessible_resources": [ "pageOverlay.css", "bar.html", "submit.html", "images\/reddit-mail.svg", "images\/reddit-modmail.svg" ] } |