No Bloat Fandom
Remove the intrusive parts of fandom.com wikis
Vad är No Bloat Fandom?
No Bloat Fandom är en Chrome-tillägg utvecklad av aaronldickmandev, och dess huvudfunktion är "Remove the intrusive parts of fandom.com wikis".
Tilläggsskärmbilder
Ladda ner No Bloat Fandom-förlängningens CRX-fil
Ladda ner No Bloat Fandom-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | bfnlgjhmkfahjeheaieophmhefdlmfln |
| Officiell webbadress | https://chromewebstore.google.com/detail/no-bloat-fandom/bfnlgjhmkfahjeheaieophmhefdlmfln |
| Beskrivning | Remove the intrusive parts of fandom.com wikis |
| Filstorlek | 12.42 KB |
| Antal Installationer | 1,000 |
| Aktuell Version | 1.8.0 |
| Senast Uppdaterad | 2024-01-16 |
| Publiceringsdatum | 2022-09-06 |
| Betyg | 5.00/5 Totalt 17 Betyg |
| Utvecklare | aaronldickmandev |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
}
} | |