Extreemit
Everything you ever wanted to add to Steemit
Co to jest Extreemit?
Extreemit to rozszerzenie Chrome opracowane przez itchykitten, a jego główną funkcją jest „Everything you ever wanted to add to Steemit”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Extreemit
Pobierz pliki rozszerzeń Extreemit 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 UI mod for Steemit.com Currently has one feature, which allows you to toggle displaying 'Resteems' on Steemit.com user profiles. More to come! made by @itchykitten for use on steemit.com.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fongpbjdmmlocghoebbindiopneahhhk |
Oficjalny URL | https://chrome.google.com/webstore/detail/extreemit/fongpbjdmmlocghoebbindiopneahhhk |
Opis | Everything you ever wanted to add to Steemit |
Rozmiar pliku | 53.01 KB |
Liczba instalacji | 28 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2017-06-28 |
Data Publikacji | 2017-06-28 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | itchykitten |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extreemit", "description": "Everything you ever wanted to add to Steemit", "version": "0.0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "steem48.png", "128": "steem128.png" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/steemit.com\/*" ], "css": [ "toggle.css" ], "js": [ "jquery.js", "extreemit.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |