ShotPin

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

Wat is ShotPin?

ShotPin is een Chrome-extensie ontwikkeld door http://shotpin.com, en de belangrijkste functie is "ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ShotPin

Download ShotPin-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 ;)                    

Basisinformatie over de Extensie

Naam ShotPin ShotPin
ID dndakgjimmmhpepokndjigkcpmmohkaj
Officiële URL https://chrome.google.com/webstore/detail/shotpin/dndakgjimmmhpepokndjigkcpmmohkaj
Beschrijving ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.
Bestandsgrootte 39.4 KB
Aantal Installaties 2,000
Huidige Versie 3.0.0
Laatst Bijgewerkt 2019-03-25
Publicatiedatum 2019-03-25
Beoordeling 2.88/5 Totaal 68 Beoordelingen
Ontwikkelaar http://shotpin.com
Betalingswijze free
Extensiewebsite http://shotpin.com
Ondersteunde Talen 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:"
}