Pre-Pin
Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.
Pre-Pin là gì?
Pre-Pin là một tiện ích mở rộng Chrome được phát triển bởi Chris Laskey, và tính năng chính của nó là "Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pre-Pin
Tải xuống các tệp mở rộng Pre-Pin 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bmlhehccaikkfffmcjpkkpjhbbpaophm |
URL Chính Thức | https://chrome.google.com/webstore/detail/pre-pin/bmlhehccaikkfffmcjpkkpjhbbpaophm |
Mô tả | Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage. |
Kích Thước Tệp | 603 KB |
Số Lần Cài Đặt | 81 |
Phiên Bản Hiện Tại | 1.6.0 |
Cập Nhật Lần Cuối | 2012-07-05 |
Ngày Phát Hành | 2012-07-05 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Chris Laskey |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://github.com/chrislaskey/pre-pin |
URL Trang Trợ Giúp | http://github.com/chrislaskey/pre-pin |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |