ShotPin

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

Τι είναι το ShotPin;

Το ShotPin είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://shotpin.com, και η κύρια λειτουργία του είναι "ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ShotPin

Λήψη αρχείων επέκτασης ShotPin σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα ShotPin ShotPin
ID dndakgjimmmhpepokndjigkcpmmohkaj
Επίσημο URL https://chrome.google.com/webstore/detail/shotpin/dndakgjimmmhpepokndjigkcpmmohkaj
Περιγραφή ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.
Μέγεθος Αρχείου 39.4 KB
Αριθμός Εγκαταστάσεων 2,000
Τρέχουσα Έκδοση 3.0.0
Τελευταία Ενημέρωση 2019-03-25
Ημερομηνία Δημοσίευσης 2019-03-25
Αξιολόγηση 2.88/5 Συνολικά 68 Αξιολογήσεις
Προγραμματιστής http://shotpin.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://shotpin.com
Υποστηριζόμενες Γλώσσες 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:"
}