PLANOLY Uploader
You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest.
O que é PLANOLY Uploader?
PLANOLY Uploader é uma extensão do Chrome desenvolvida por https://planoly.com, e sua principal característica é "You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PLANOLY Uploader
Baixe arquivos de extensão PLANOLY Uploader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Planoly Uploader What is Planoly? Planoly is a visual planning tool that allows users to upload, plan, and curate content to publish on Instagram, Facebook, and Pinterest. You can use this extension to upload your content to your Planoly’s Pin Planner and publish to Pinterest. How can this extension help you: Super fast way to quickly schedule content to your Pinterest account. Click on the “Plan it” icon on any image as you browse and upload to Planoly’s Pin Planner to plan immediately, or simply schedule for a future date. Extension will pick up the web page title, and populate the Pin Title field, use any image description to populate the Pin Description field. You can select which board you want to post to, as well as the date and time. If you do not wish to schedule, simply hit the “save” button, and the image will be saved to your library dashboard in Planoly’s Pin Planner. Note: To use this extension, you must have a Planoly account and log into it, as well as a working Pinterest account authenticated with Planoly. www.planoly.com
Informações Básicas da Extensão
Nome | PLANOLY Uploader |
ID | ebpcimigfdcgmpaiboiipfkmceejkekp |
URL Oficial | https://chromewebstore.google.com/detail/planoly-uploader/ebpcimigfdcgmpaiboiipfkmceejkekp |
Descrição | You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest. |
Tamanho do Arquivo | 19.01 KB |
Contagem de Instalações | 4,578 |
Versão Atual | 1.2 |
Última Atualização | 2019-11-04 |
Data de Publicação | 2019-10-31 |
Classificação | 3.67/5 Total de 3 Avaliações |
Desenvolvedor | https://planoly.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.planoly.com |
URL da Página de Ajuda | https://www.planoly.com/help |
URL da Página de Política de Privacidade | https://planoly.com/privacy-policy |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PLANOLY Uploader", "description": "You can use this extension to upload content to your Planoly's Pin Planner and publish to Pinterest.", "version": "1.2", "browser_action": { "default_icon": { "19": "icons\/icon_toolbar.png", "38": "icons\/[email protected]" }, "default_title": "Planoly Multi-Image Uploader" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab", "https:\/\/www.planoly.com\/", "https:\/\/pinterest.planoly.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "planoly\/planoly.js" ], "run_at": "document_start" } ] } |