Prolific Darkmode
Darkmode for Prolific
Wat is Prolific Darkmode?
Prolific Darkmode is een Chrome-extensie ontwikkeld door tsgrgo, en de belangrijkste functie is "Darkmode for Prolific".
Extensie Screenshots
Download het CRX-bestand van de extensie Prolific Darkmode
Download Prolific Darkmode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Introduces a toggle for the prolific UI through which a fully implemented dark theme can be applied.
Basisinformatie over de Extensie
| Naam | |
| ID | ihkhjjjbeddbjnldjcnaldcjlblaegmj |
| Officiële URL | https://chromewebstore.google.com/detail/prolific-darkmode/ihkhjjjbeddbjnldjcnaldcjlblaegmj |
| Beschrijving | Darkmode for Prolific |
| Bestandsgrootte | 126 KB |
| Aantal Installaties | 466 |
| Huidige Versie | 1.0.9 |
| Laatst Bijgewerkt | 2024-02-08 |
| Publicatiedatum | 2022-09-30 |
| Beoordeling | 4.56/5 Totaal 9 Beoordelingen |
| Ontwikkelaar | tsgrgo |
| prolificenhancer@gmail.com | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Prolific Darkmode",
"description": "Darkmode for Prolific",
"version": "1.0.9",
"icons": {
"128": "icon128.png"
},
"action": {
"default_icon": "icon128.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/app.prolific.co\/*",
"https:\/\/app.prolific.com\/*"
],
"js": [
"pe_content.js"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/app.prolific.co\/*",
"https:\/\/app.prolific.com\/*"
]
},
"web_accessible_resources": [
{
"resources": [
"e2cb269296.js",
"bc836f415a.js",
"cdd3203fb9.json"
],
"matches": [
"https:\/\/app.prolific.co\/*",
"https:\/\/app.prolific.com\/*"
]
}
],
"permissions": [
"storage"
]
} | |