Posh Butler
Auto share your posts.
Что такое Posh Butler?
Posh Butler - это расширение Chrome, разработанное tyler.buchea, и его основная функция - "Auto share your posts.".
Снимки экрана расширения
Скачать файл CRX расширения Posh Butler
Скачайте файлы расширений Posh Butler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Posh Butler automates the "Share To Followers" feature on Poshmark. Simply navigate to your Poshmark closet, open Posh Butler, click start, and wait while it shares all of your posts. This extension is for someone with hundreds of posts on Poshmark and manually sharing each one is too time consuming.
Основная информация о расширении
Название | Posh Butler |
ID | dlncdhoiibiggpnejbmakpfloikjlmab |
Официальный URL | https://chromewebstore.google.com/detail/posh-butler/dlncdhoiibiggpnejbmakpfloikjlmab |
Описание | Auto share your posts. |
Размер файла | 4.56 MB |
Количество установок | 118 |
Текущая Версия | 0.0.8 |
Последнее Обновление | 2020-12-24 |
Дата публикации | 2020-04-18 |
Рейтинг | 3.44/5 Всего 9 оценок |
Разработчик | tyler.buchea |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://tylerbuchea.com |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Posh Butler", "description": "Auto share your posts.", "version": "0.0.8", "browser_action": { "default_popup": "index.html", "default_title": "Posh Butler" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "storage", "https:\/\/*.poshmark.com\/*", "https:\/\/*.poshmark.ca\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.poshmark.com\/*", "https:\/\/*.poshmark.ca\/*" ], "js": [ ".\/contentscript.js" ] } ] } |