TumblrSkipper
Skips the sidebar for you when you click a Tumblelog on your Dashboard
Что такое TumblrSkipper?
TumblrSkipper - это расширение Chrome, разработанное jessica.summer.smith, и его основная функция - "Skips the sidebar for you when you click a Tumblelog on your Dashboard".
Снимки экрана расширения
Скачать файл CRX расширения TumblrSkipper
Скачайте файлы расширений TumblrSkipper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
On the Tumblr dashboard, clicking a blog link used to take you to that blog. Now, it takes you to a weird sidebar to preview the blog instead.
This extension restores the native link functionality to the Tumblr dashboard. Основная информация о расширении
| Название | |
| ID | cofjhhfhgfpdglobncjkfdmmpdkmfgdc |
| Официальный URL | https://chrome.google.com/webstore/detail/tumblrskipper/cofjhhfhgfpdglobncjkfdmmpdkmfgdc |
| Описание | Skips the sidebar for you when you click a Tumblelog on your Dashboard |
| Размер файла | 40.95 KB |
| Количество установок | 186 |
| Текущая Версия | 0.2 |
| Последнее Обновление | 2016-01-12 |
| Дата публикации | 2016-01-12 |
| Рейтинг | 4.50/5 Всего 2 оценок |
| Разработчик | jessica.summer.smith |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TumblrSkipper",
"version": "0.2",
"description": "Skips the sidebar for you when you click a Tumblelog on your Dashboard",
"browser_action": {
"default_icon": "TS.png",
"default_title": "TumblrSkipper"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.tumblr.com\/*"
],
"js": [
"jquery.min.js",
"content.js"
]
}
],
"permissions": [
"tabs",
"webNavigation",
"https:\/\/www.tumblr.com\/*"
]
} | |