ShotPin

ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.

O que é ShotPin?

ShotPin é uma extensão do Chrome desenvolvida por http://shotpin.com, e sua principal característica é "ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ShotPin

Baixe arquivos de extensão ShotPin 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

                        Latest update : Lots of fixes. Including Retina screen support.

A simple Chrome browser extension to make it easy to take a screenshot of any web page then share it on Pinterest!

Built by @Kosso : http://twitter.com/kosso 

Also added a little donate button ;)                    

Informações Básicas da Extensão

Nome ShotPin ShotPin
ID dndakgjimmmhpepokndjigkcpmmohkaj
URL Oficial https://chrome.google.com/webstore/detail/shotpin/dndakgjimmmhpepokndjigkcpmmohkaj
Descrição ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.
Tamanho do Arquivo 39.4 KB
Contagem de Instalações 2,000
Versão Atual 3.0.0
Última Atualização 2019-03-25
Data de Publicação 2019-03-25
Classificação 2.88/5 Total de 68 Avaliações
Desenvolvedor http://shotpin.com
Tipo de Pagamento free
Site da Extensão http://shotpin.com
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShotPin",
    "version": "3.0.0",
    "description": "ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.",
    "homepage_url": "https:\/\/shotpin.com",
    "browser_action": {
        "default_icon": "shotpin-19.png",
        "default_title": "ShotPin"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js",
            "link.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "*:\/\/*\/*",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "shotpin.png",
        "48": "shotpin-48.png",
        "128": "shotpin-128.png"
    },
    "web_accessible_resources": [
        "link.html",
        "background.html",
        "images\/shotpin_logo.png",
        "images\/cancel.png",
        "images\/tick.png",
        "images\/spinner.gif"
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; img-src data:"
}