Extreemit
Everything you ever wanted to add to Steemit
Что такое Extreemit?
Extreemit - это расширение Chrome, разработанное itchykitten, и его основная функция - "Everything you ever wanted to add to Steemit".
Снимки экрана расширения
Скачать файл CRX расширения Extreemit
Скачайте файлы расширений Extreemit в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | fongpbjdmmlocghoebbindiopneahhhk |
| Официальный URL | https://chrome.google.com/webstore/detail/extreemit/fongpbjdmmlocghoebbindiopneahhhk |
| Описание | Everything you ever wanted to add to Steemit |
| Размер файла | 53.01 KB |
| Количество установок | 28 |
| Текущая Версия | 0.0.1 |
| Последнее Обновление | 2017-06-28 |
| Дата публикации | 2017-06-28 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | itchykitten |
| Тип оплаты | free |
| Поддерживаемые языки | 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
}
} | |