Remove Twitter Moments
Removes Twitter's 'Moments' navigation button.
Co to jest Remove Twitter Moments?
Remove Twitter Moments to rozszerzenie Chrome opracowane przez Ed, a jego główną funkcją jest „Removes Twitter's 'Moments' navigation button.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Remove Twitter Moments
Pobierz pliki rozszerzeń Remove Twitter Moments 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 Chrome extension to remove the Twitter 'Moment's navigation bar button.
Podstawowe informacje o rozszerzeniu
Nazwa | Remove Twitter Moments |
ID | ahgkojcohophkbdipjagnobbdabmhmdm |
Oficjalny URL | https://chromewebstore.google.com/detail/remove-twitter-moments/ahgkojcohophkbdipjagnobbdabmhmdm |
Opis | Removes Twitter's 'Moments' navigation button. |
Rozmiar pliku | 9.48 KB |
Liczba instalacji | 109 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2015-12-14 |
Data Publikacji | 2015-12-13 |
Ocena | 4.38/5 Łącznie 8 Oceny |
Deweloper | Ed |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ed-flanagan/remove-moments |
Adres URL Strony Pomocy | https://github.com/ed-flanagan/remove-moments/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Twitter Moments", "short_name": "Stop Moments", "description": "Removes Twitter's 'Moments' navigation button.", "version": "1.1.0", "version_name": "1.1.0", "homepage_url": "https:\/\/github.com\/ed-flanagan\/remove-moments", "author": "Ed Flanagan", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "offline_enabled": false, "permissions": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "run_at": "document_end", "all_frames": false, "css": [ "remove.css" ] } ] } |