CF ON STEROIDS
It enhances the Codeforces user profile according to selected options locally
Qu'est-ce que CF ON STEROIDS ?
CF ON STEROIDS est une extension Chrome développée par iManageDs, et sa fonction principale est "It enhances the Codeforces user profile according to selected options locally".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CF ON STEROIDS
Téléchargez les fichiers d'extension CF ON STEROIDS 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
It enables user to change their profile rating, contribution and roles in Codeforces.
Informations de Base sur l'Extension
Nom | CF ON STEROIDS |
ID | gnpecblcobafkekjmocbbeabephkgjpj |
URL Officiel | https://chromewebstore.google.com/detail/cf-on-steroids/gnpecblcobafkekjmocbbeabephkgjpj |
Description | It enhances the Codeforces user profile according to selected options locally |
Taille du Fichier | 44.89 KB |
Nombre d'Installations | 208 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2020-12-12 |
Date de Publication | 2020-12-11 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | iManageDs |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF ON STEROIDS", "description": "It enhances the Codeforces user profile according to selected options locally", "version": "1.0.0", "browser_action": { "default_popup": "steroids.html", "default_icon": "ico64.png" }, "icons": { "16": "ico16.png", "48": "ico48.png", "64": "ico64.png", "128": "ico128.png", "256": "ico256.png", "512": "ico512.png" }, "content_scripts": [ { "matches": [ "http:\/\/codeforces.com\/*", "https:\/\/codeforces.com\/*" ], "js": [ "script.js" ], "all_frames": true } ], "permissions": [ "tabs", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens steroids.html" } }, "manifest_version": 2 } |