Pre-Pin

Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.

Pre-Pinとは何ですか?

Pre-PinはChris Laskeyによって開発されたChromeの拡張機能で、その主な機能は「Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.」です。

拡張機能のスクリーンショット

screenshot

Pre-Pin拡張機能のCRXファイルをダウンロード

Pre-Pin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet.

The Pre-Pin menu, accessible by right clicking anywhere on a webpage, offers two options.

The first option is Pre-Pin Page. This searches the current webpage and pulls out all relevant images. This makes previously unpinnable images like background-images (often used in rotating displays) now pinnable by the Pin It! bookmarklet. It's also helpful when you want to quickly look at all images on a page, whether you're adding them to pinterest or just browsing.

The second option is Pre-Pin Image. This makes it possible to pin an individual image without leaving the page, instead of having to save it and upload it to Pinterest. It retains as much original information as possible, like a path back to the original source of the image.

There has been no attempt made to try to reverse engineer Pinterest intellectual property, and all code and functionality has been written in compliance with written terms of service as well as the spirit behind it. I believe in making community sharing a reality, while also protecting the rights of the original owners.

Pre-Pin Chrome Extension source code is available for free on github and is released under the permissive MIT License.                    

拡張機能の基本情報

名前 Pre-Pin Pre-Pin
ID bmlhehccaikkfffmcjpkkpjhbbpaophm
公式URL https://chrome.google.com/webstore/detail/pre-pin/bmlhehccaikkfffmcjpkkpjhbbpaophm
説明 Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.
ファイルサイズ 603 KB
インストール数 81
現在のバージョン 1.6.0
最終更新日 2012-07-05
公開日 2012-07-05
評価 2.33/5 合計 3 レビュー
開発者 Chris Laskey
支払い方法 free
拡張機能のウェブサイト http://github.com/chrislaskey/pre-pin
ヘルプページのURL http://github.com/chrislaskey/pre-pin
対応言語 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pre-Pin",
    "version": "1.6.0",
    "description": "Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.",
    "homepage_url": "http:\/\/github.com\/chrislaskey\/pre-pin",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "pre-pin-content-styles.css"
            ],
            "js": [
                "pre-pin-content-scripts.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ]
}