Publer
Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks
¿Qué es Publer?
Publer es una extensión de Chrome desarrollada por https://publer.io, y su función principal es "Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Publer
Descarga archivos de extensión Publer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The Publer Chrome extension allows you to create & schedule social media posts without having to open Publer on a new tab. By installing this extension, you will be able to share with your network the article you're reading, a cute picture you find on the internet, or a quote you think it's worth sharing simply by right-clicking on them. To share a webpage or a link, simply right-click on it and select "Share page with Publer". To share a quote or text, simply select it, right-click on it and select "Share selection with Publer". To share an image, simply right-click on the image and select "Share image with Publer". To make it easier for you: - A "share" button will appear below every image that you see on the web - The current webpage you're on will be automatically attached when activating the extension Both these options can be disabled at any time by visiting the extension's settings page.
Información Básica de la Extensión
Nombre | Publer |
ID | mbclkgocofhagldefeogoionalbpckoo |
URL Oficial | https://chromewebstore.google.com/detail/publer/mbclkgocofhagldefeogoionalbpckoo |
Descripción | Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks |
Tamaño del Archivo | 261 KB |
Cantidad de Instalaciones | 4,607 |
Versión Actual | 2.1.2 |
Última Actualización | 2023-12-12 |
Fecha de Publicación | 2020-12-27 |
Calificación | 4.93/5 Total de 14 Calificaciones |
Desarrollador | https://publer.io |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://publer.io |
URL de la Página de Ayuda | https://help.publer.io |
URL de la Página de Política de Privacidad | https://publer.io/privacy |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Publer", "version": "2.1.2", "description": "Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks", "background": { "service_worker": "background.bundle.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "js": [ "contentScript.bundle.js" ], "all_frames": false } ], "icons": { "16": "favicons\/favicon-16x16.png", "32": "favicons\/favicon-32x32.png", "48": "favicons\/favicon-48x48.png", "64": "favicons\/favicon-64x64.png", "96": "favicons\/favicon-96x96.png", "128": "favicons\/favicon-128x128.png", "256": "favicons\/favicon-256x256.png", "512": "favicons\/favicon-512x512.png", "1024": "favicons\/favicon-1024x1024.png" }, "action": { "default_title": "Publer" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+0", "mac": "Command+Shift+0", "chromeos": "Ctrl+Shift+0", "linux": "Ctrl+Shift+0" } }, "ignite-extension-feature": { "suggested_key": { "windows": "Ctrl+Shift+0", "mac": "Command+Shift+0", "chromeos": "Ctrl+Shift+0", "linux": "Ctrl+Shift+0" }, "description": "Initialize the extension" }, "disconnect-extension-feature": { "suggested_key": { "windows": "Ctrl+Shift+9", "mac": "Command+Shift+9", "chromeos": "Ctrl+Shift+9", "linux": "Ctrl+Shift+9" }, "description": "Initialize the extension" } }, "options_ui": { "open_in_tab": true, "page": "options.html" }, "permissions": [ "activeTab", "contextMenus", "storage", "scripting" ], "host_permissions": [ "https:\/\/app.publer.io\/*", "https:\/\/app.publer.io" ], "web_accessible_resources": [ { "resources": [ "dashboard.html" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "incognito": "not_allowed", "content_security_policy": { "extension_pages": "default-src 'self'; frame-src 'self' https:\/\/app.publer.io; style-src * 'self'; img-src 'self' data:;" } } |