Doomscroll Blocker
A chrome extension to block doom scrolling and help you touch grass!
Wat is Doomscroll Blocker?
Doomscroll Blocker is een Chrome-extensie ontwikkeld door zjjc123, en de belangrijkste functie is "A chrome extension to block doom scrolling and help you touch grass!".
Extensie Screenshots
Download het CRX-bestand van de extensie Doomscroll Blocker
Download Doomscroll Blocker-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
Use this extension to stop the endless scrolling on toxic social media website! After a certain amount of scrolling on Twitter, Reddit, Instagram, or TikTok, an alert will appear and the feed will *vanish* from existence. Go touch some grass. Basisinformatie over de Extensie
| Naam | |
| ID | gneldbncofioemhoaifgeneiadeodgmh |
| Officiële URL | https://chromewebstore.google.com/detail/doomscroll-blocker/gneldbncofioemhoaifgeneiadeodgmh |
| Beschrijving | A chrome extension to block doom scrolling and help you touch grass! |
| Bestandsgrootte | 16.97 KB |
| Aantal Installaties | 53 |
| Huidige Versie | 0.1.1 |
| Laatst Bijgewerkt | 2022-09-04 |
| Publicatiedatum | 2022-09-01 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | zjjc123 |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/Zjjc123/doomscroll-blocker |
| Help Pagina-URL | https://github.com/Zjjc123/doomscroll-blocker |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Doomscroll Blocker",
"version": "0.1.1",
"description": "A chrome extension to block doom scrolling and help you touch grass!",
"icons": {
"16": "icons\/icon_16.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Doomscroll Blocker",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*",
"*:\/\/*.tiktok.com\/*",
"*:\/\/*.instagram.com\/*",
"*:\/\/*.reddit.com\/*"
],
"run_at": "document_end",
"js": [
"contentScript.js"
]
}
]
} | |