ShotPin

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

ShotPin là gì?

ShotPin là một tiện ích mở rộng Chrome được phát triển bởi http://shotpin.com, và tính năng chính của nó là "ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ShotPin

Tải xuống các tệp mở rộng ShotPin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ShotPin ShotPin
ID dndakgjimmmhpepokndjigkcpmmohkaj
URL Chính Thức https://chrome.google.com/webstore/detail/shotpin/dndakgjimmmhpepokndjigkcpmmohkaj
Mô tả ShotPin is an extension making it easy to share any portion of a web page to Pinterest with a link to it.
Kích Thước Tệp 39.4 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 3.0.0
Cập Nhật Lần Cuối 2019-03-25
Ngày Phát Hành 2019-03-25
Đánh Giá 2.88/5 Tổng số 68 Đánh Giá
Nhà Phát Triển http://shotpin.com
Loại Thanh Toán free
Trang Web Mở Rộng http://shotpin.com
Ngôn Ngữ Được Hỗ Trợ 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:"
}