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是由http://shotpin.com開發的Chrome擴展程式,該擴展的主要功能是“ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.”。

擴展截圖

screenshot

下載ShotPin擴展crx文件

下載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
官方網址 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:"
}