Sked Social Regram
Regram and schedule posts
O que é Sked Social Regram?
Sked Social Regram é uma extensão do Chrome desenvolvida por http://skedsocial.com, e sua principal característica é "Regram and schedule posts".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sked Social Regram
Baixe arquivos de extensão Sked Social Regram 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
Sked Social Regram is an extension to the paid subscription service Sked Social, which allows you to schedule and upload images and video to Instagram to one or more accounts. You need to have a subscription to Sked Social to use this extension. Sign up at https://app.skedsocial.com/signup. Sked Social's extension lets customers 'regram' or share photos from other users. It installs an extension to your Chrome. When you are browsing Instagram, you can click on the Sked Social icon in your browser to share the image currently on the screen. You'll be able to select the right account, and provide a caption, comment and time for the post. Please note that this extension is in beta format - please provide feedback with any questions or issues to us at [email protected]!
Informações Básicas da Extensão
Nome | |
ID | ffgpobfpdejceccaekjgoohkbllpohcp |
URL Oficial | https://chrome.google.com/webstore/detail/sked-social-regram/ffgpobfpdejceccaekjgoohkbllpohcp |
Descrição | Regram and schedule posts |
Tamanho do Arquivo | 486 KB |
Contagem de Instalações | 2,000 |
Versão Atual | 3.0.2 |
Última Atualização | 2019-04-19 |
Data de Publicação | 2019-04-19 |
Classificação | 3.00/5 Total de 5 Avaliações |
Desenvolvedor | http://skedsocial.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://skedsocial.com |
URL da Página de Ajuda | https://support.skedsocial.com/ |
URL da Página de Política de Privacidade | https://skedsocial.com/privacy-policy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sked Social Regram", "description": "Regram and schedule posts", "version": "3.0.2", "browser_action": { "default_icon": "images\/logo-disabled.png", "default_popup": "components\/post.html" }, "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "dist\/contentscript.js" ] } ], "icons": { "128": "images\/logo_128.png", "64": "images\/logo.png" }, "permissions": [ "activeTab", "tabs", "notifications", "https:\/\/app.skedsocial.com\/" ], "options_page": "components\/post.html", "web_accessible_resources": [ "\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |