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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}