Chicken Smoothie Assistant
Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.
Qu'est-ce que Chicken Smoothie Assistant ?
Chicken Smoothie Assistant est une extension Chrome développée par elliot, et sa fonction principale est "Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chicken Smoothie Assistant
Téléchargez les fichiers d'extension Chicken Smoothie Assistant 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 extension intends to be an unofficial, all-around assistant for Chicken Smoothie! It houses quality of life changes to the website. In version 1.2.1, the only features it has are: - A column in a posts page to show if a topic is on the front page of it's forum or not. - A fully functional bump button on the posts page. - Clear posts button(clears all of your posts that it can) - A working settings panel to enable/disable features. - Personalize your bump message! More features are in development right now!
Informations de Base sur l'Extension
Nom | |
ID | dlndlacknelkkhombcehoccclpfkpefl |
URL Officiel | https://chromewebstore.google.com/detail/chicken-smoothie-assistan/dlndlacknelkkhombcehoccclpfkpefl |
Description | Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel. |
Taille du Fichier | 44.81 KB |
Nombre d'Installations | 704 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2023-10-06 |
Date de Publication | 2021-11-04 |
Évaluation | 4.50/5 Total 12 Évaluations |
Développeur | elliot |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://csa.elliotcs.dev/ |
URL de la Page d'Aide | https://www.chickensmoothie.com/Forum/memberlist.php?mode=viewprofile&u=1019473 |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chicken Smoothie Assistant", "description": "Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.", "version": "1.2.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.chickensmoothie.com\/Forum\/search.php*" ], "js": [ "content.js" ], "css": [ "cs-ext-styles.css" ] } ], "permissions": [ "tabs", "webNavigation", "storage" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "CS Assistant", "default_popup": "popup\/popup.html" } } |