Tumblr Plus
This extension removes duplicated posts and already viewed post of your tumblr dashboard!
Что такое Tumblr Plus?
Tumblr Plus - это расширение Chrome, разработанное Fran Méndez, и его основная функция - "This extension removes duplicated posts and already viewed post of your tumblr dashboard!".
Снимки экрана расширения
Скачать файл CRX расширения Tumblr Plus
Скачайте файлы расширений Tumblr Plus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension for Tumblr repeated post on dashboard. It has the ability to save history as well. Just go to your dasboard and it will appear an icon on your url to change the setting. You can also clear history if you want by pressing the button "Clear history". Hope you enjoy as I did coding it. Peace.
Основная информация о расширении
Название | |
ID | afnnpegeelemflcnchmbpplpnminffkj |
Официальный URL | https://chrome.google.com/webstore/detail/tumblr-plus/afnnpegeelemflcnchmbpplpnminffkj |
Описание | This extension removes duplicated posts and already viewed post of your tumblr dashboard! |
Размер файла | 51.53 KB |
Количество установок | 278 |
Текущая Версия | 1.1.2 |
Последнее Обновление | 2013-11-27 |
Дата публикации | 2013-11-27 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | Fran Méndez |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tumblr Plus", "description": "This extension removes duplicated posts and already viewed post of your tumblr dashboard!", "version": "1.1.2", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.tumblr.com\/dashboard" ], "js": [ "jquery.js", "visible.js", "tumblr.js" ], "css": [ "style.css" ] } ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "page_action": { "default_icon": { "19": "images\/19.png", "38": "images\/38.png" }, "default_title": "Tumblr Plus", "default_popup": "popup.html" }, "web_accessible_resources": [ "enlarge.jpg" ], "permissions": [ "storage", "tabs" ] } |