Reddit Under 100
Highlights threads that contain under 100 comments. Toggle with ~ key.
Co to jest Reddit Under 100?
Reddit Under 100 to rozszerzenie Chrome opracowane przez https://www.clayburngriffin.com, a jego główną funkcją jest „Highlights threads that contain under 100 comments. Toggle with ~ key.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reddit Under 100
Pobierz pliki rozszerzeń Reddit Under 100 w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A simple plugin that highlights Reddit threads that have fewer than 100 comments. Use the ~ key to toggle highlighting on and off. Updated to work with New and Old Reddit alike. (Option to use Q as toggle key like Version 1.0). You can send feedback to @Clayburn on Twitter. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gockmhepknafokmfmpdkdmffnleaddmd |
| Oficjalny URL | https://chromewebstore.google.com/detail/reddit-under-100/gockmhepknafokmfmpdkdmffnleaddmd |
| Opis | Highlights threads that contain under 100 comments. Toggle with ~ key. |
| Rozmiar pliku | 13.37 KB |
| Liczba instalacji | 14 |
| Aktualna Wersja | 2.0 |
| Ostatnia Aktualizacja | 2023-07-20 |
| Data Publikacji | 2016-07-13 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | https://www.clayburngriffin.com |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | http://www.clayburngriffin.com/under100 |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit Under 100",
"description": "Highlights threads that contain under 100 comments. Toggle with ~ key.",
"version": "2.0",
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"under.js"
],
"run_at": "document_end"
}
],
"icons": {
"128": "icon.png"
},
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"manifest_version": 3
} | |