Twitter Cleaner
Removes annoying twitter boxes
Co to jest Twitter Cleaner?
Twitter Cleaner to rozszerzenie Chrome opracowane przez https://cavar.net, a jego główną funkcją jest „Removes annoying twitter boxes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitter Cleaner
Pobierz pliki rozszerzeń Twitter Cleaner 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
Removes trending, who to follow and footer boxes. Report any issues here https://github.com/Palethorn/twitter_cleaner/issues
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | oocpmdgjlccdinophpbbkmfdjooflfac |
Oficjalny URL | https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac |
Opis | Removes annoying twitter boxes |
Rozmiar pliku | 92.48 KB |
Liczba instalacji | 50 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2019-11-21 |
Data Publikacji | 2019-11-21 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | https://cavar.net |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Palethorn/twitter_cleaner |
Adres URL Strony Pomocy | https://github.com/Palethorn/twitter_cleaner/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Cleaner", "version": "2.0.0", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "description": "Removes annoying twitter boxes", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |