No Bloat Fandom
Remove the intrusive parts of fandom.com wikis
Qu'est-ce que No Bloat Fandom ?
No Bloat Fandom est une extension Chrome développée par aaronldickmandev, et sa fonction principale est "Remove the intrusive parts of fandom.com wikis".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension No Bloat Fandom
Téléchargez les fichiers d'extension No Bloat Fandom 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
A lightweight extension to remove the unnecessary garbage from fandom.com wikis. Source code, bug reports, feature requests go to: https://github.com/aaronldickman/nobloatfandom
Informations de Base sur l'Extension
Nom | |
ID | bfnlgjhmkfahjeheaieophmhefdlmfln |
URL Officiel | https://chromewebstore.google.com/detail/no-bloat-fandom/bfnlgjhmkfahjeheaieophmhefdlmfln |
Description | Remove the intrusive parts of fandom.com wikis |
Taille du Fichier | 12.42 KB |
Nombre d'Installations | 1,000 |
Version Actuelle | 1.8.0 |
Dernière Mise à Jour | 2024-01-16 |
Date de Publication | 2022-09-06 |
Évaluation | 5.00/5 Total 17 Évaluations |
Développeur | aaronldickmandev |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No Bloat Fandom", "permissions": [ "storage" ], "description": "Remove the intrusive parts of fandom.com wikis", "version": "1.8.0", "icons": { "128": "icon.png" }, "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.fandom.com\/*" ], "js": [ "fandom-script.js" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "https:\/\/*.fandom.com\/*" ], "css": [ "fandom-styles.css" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Customize no bloat fandom behavior", "default_popup": "\/options-popover\/options-popover.html" }, "options_ui": { "page": "\/options-popover\/options-popover.html", "open_in_tab": false } } |