Download pins
Author: e | 2025-04-24
Pin Downloader Pin Saver has an APK download size of 22.93 MB and the latest version available is 1.0.1. Pin Downloader Pin Saver is FREE to download. Description
Free pin downloader Download - pin downloader for Windows
ΕπισκόπησηPinterest Enhanced Experience - Fixed Height | Full Size images Download | Google Image Search | Arrow Keys Navigation through pinsThe usual Pinterest, but more practical and efficient!With this extension you will be able to focus on content and images, with an enhanced UI and without any distraction.The key features are:- ALL PINS HAVE THE SAME HEIGHT, so too large images will not draw all your attention.- PINS INFORMATION WILL APPEAR ONLY ON MOUSE OVER, let you pay more attention to images- LONG PINS WILL SLIDE ON MOUSE OVER, so it will be not always necessary to open it to examine it.- NAVIGATE through pins with LEFT and RIGHT keys.- DOWNLOAD pin images.- SEARCH IMAGES ON GOOGLE.And, if you want to revert to normal Pinterest, you have simply to click the icon in the address bar!Give it a try :)*** LAST VERSION CHANGELOG ***Version 1.6 (January 18, 2016)Bugfix: Fixed Split Module Layout.Bugfix: Fixed pin link position: now it's a button under like button.Bugfix: Fixed Download and search buttons position.Version 1.5 (August 11, 2015)Removed: Removed Arrow Kyes Navigation through pins due to incompatibility with the new nativa feature of pinterest that provide the same feature.Feature:Now Pinterest Enhanced is Open Source on GitHub.Bugfix: Minor improvements.Version 1.4 (February 07, 2015)Bugfix: It works again!Feature: Fixed Height Pins and Extra Features separated: now you can disable one or both separately.Version 1.3.5 (October 01, 2014)Bugfix: Now download button starts the download insteed open a new tab.Bugfix: Fixed "Notify me on Pinterest Enhanced updates" option's bug.Thanks for feedbacks, bugs reporting and advices.Version 1.3 (September 26, 2014)Feature: Use left and right keys to navigate through pins.Feature: Added Download button.Feature: Added Google Image Search button.Feature: Pin description only on mouse over out of beta.Bugfix: Fixed height of some elements.Bugfix: Cleaned up and reorganized the code.Version 1.2.5 (September 16, 2014)Feature: Option to show pin description only on mouse over [BETA]Version 1.2.1 (September 07, 2014)Feature: Option page - initial releaseFeature: Added notification on extension update.Feature: Grant possibility to choose pin size, scolling and centering options.Feature: Automatic adjustment of scrolling animation speed based on image size.Feature: Vertical centering of small images into pin box.Bugfix: Fixed Gif button position.Bugfix: Now only images longer than pin box will slide.Bugfix: Fixed "Add a pin" box height.Bugfix: Changed image scroll animation to linear.ΛεπτομέρειεςΈκδοση1.6Ενημέρωση18 Ιανουαρίου 2016Προσφέρεται απόLorenzo ZottarΜέγεθος438KiBΓλώσσεςΜη επαγγελματίας έμποροςΑυτός ο προγραμματιστής δεν έχει αυτοπροσδιοριστεί ως έμπορος. Εάν είστε καταναλωτές στην Ευρωπαϊκή Ένωση, λάβετε υπόψη ότι τα
Pin Downloader Pin Saver APK for Android Download
OverviewThe Easiest Way to Sort Your Pinterest Pins Automatically!Introducing the ultimate solution for Pinterest lovers! Our Chrome extension is a game-changer, providing you with the easiest way to sort your Pinterest pins automatically. With just a few clicks, you can easily organize your pins by date of creation, saves, repins, comments, and much more, saving you valuable time and effort.But that's not all. Our extension also allows you to access detailed insights into each pin, giving you a greater understanding of what's working and what's not. This advanced feature is perfect for those who want to optimize their Pinterest strategy and take their Pins to the next level.And with our free download options for Pinterest pictures and videos, you'll always have quick and easy access to the content you need. Our Pinterest scraping tool also makes it super simple to extract data from your Pins and use it to inform your marketing and content strategy.Whether you're a Pinterest pro or just starting out, our extension is a must-have for anyone serious about organizing and optimizing their Pins. So why wait? Download our extension today and start taking your Pinterest game to the next level!Have a great time on your Pins!!------------------------------------ Features ------------------------------------- View hidden data of each Pin.- Find and identify the best-performing viral Pin.- Find Pinterest Ad Library.- Filter effective advertising data on Pinterest.- Identify Boards allowed to join and pin effectively.- Pinterest Email Finder & Leads Finder.- Filter Collaborator Requests Boards.- Free download high-quality Pinterest story, video, and image.- Start Scroll: Automatically scroll through Pinterest pages for effortless browsing and data collection.DetailsVersion1.9.1UpdatedMarch 10, 2025FeaturesOffers in-app purchasesSize444KiBLanguagesDeveloper Website Email [email protected] developer has not identified itself as a trader. For consumers in the European Union, please note that consumer rights do not apply to contracts between you and this developer.PrivacyPinterest sort extension - SortPin.com has disclosed the following information regarding the collection and usage of your data. More detailed information can be found in the developer's privacy policy.Pinterest sort extension - SortPin.com handles the following:This developer declares that your data isNot being sold to third parties, outside of the approvedPin by gustavo siares on pin pin
Assume you are already familiar with this package.All we need to do now is register the Kaggle board, retrieve ImageNet as a pin, and decompress this file. Warning, the following code requires you to stare at a progress bar for, potentially, over an hour.library(pins)board_register("kaggle", token = "kaggle.json")pin_get("c/imagenet-object-localization-challenge", board = "kaggle")[1] %>% untar(exdir = "/localssd/imagenet/")If we are going to be training this model over and over using multiple GPUs and even multiple compute instances, we want to make sure we don’t waste too much time downloading ImageNet every single time.The first improvement to consider is getting a faster hard drive. In our case, we locally-mounted an array of SSDs into the /localssd path. We then used /localssd to extract ImageNet and configured R’s temp path and pins cache to use the SSDs as well. Consult your cloud provider’s documentation to configure SSDs, or take a look at mlverse/imagenet.Next, a well-known approach we can follow is to partition ImageNet into chunks that can be individually downloaded to perform distributed training later on.In addition, it is also faster to download ImageNet from a nearby location, ideally from a URL stored within the same data center where our cloud instance is located. For this, we can also use pins to register a board with our cloud provider and then re-upload each partition. Since ImageNet is already partitioned by category, we can easily split ImageNet into multiple zip files and re-upload to our closest data center as follows. Make sure the storage bucket is created in the same region as your computing instances.board_register("", name = "imagenet", bucket = "r-imagenet")train_path "/localssd/imagenet/ILSVRC/Data/CLS-LOC/train/"for (path in dir(train_path, full.names = TRUE)) { dir(path, full.names = TRUE) %>% pin(name = basename(path), board = "imagenet", zip = TRUE)}We can now retrieve a subset of ImageNet quite efficiently. If you are motivated to do so and have about one gigabyte to spare, feel free to follow along executing this code. Notice that ImageNet contains lots of JPEG images for each WordNet category.board_register(" "imagenet")categories pin_get("categories", board = "imagenet")pin_get(categories$id[1], board = "imagenet", extract = TRUE) %>% tibble::as_tibble()# A tibble: 1,300 x 1 value 1 /localssd/pins/storage/n01440764/n01440764_10026.JPEG 2 /localssd/pins/storage/n01440764/n01440764_10027.JPEG 3 /localssd/pins/storage/n01440764/n01440764_10029.JPEG 4 /localssd/pins/storage/n01440764/n01440764_10040.JPEG 5 /localssd/pins/storage/n01440764/n01440764_10042.JPEG 6 /localssd/pins/storage/n01440764/n01440764_10043.JPEG 7 /localssd/pins/storage/n01440764/n01440764_10048.JPEG 8 /localssd/pins/storage/n01440764/n01440764_10066.JPEG 9 /localssd/pins/storage/n01440764/n01440764_10074.JPEG10 /localssd/pins/storage/n01440764/n01440764_1009.JPEG # … with 1,290 more rowsWhen doing distributed training over ImageNet, we can now let a single compute instance process a partition of ImageNet with ease. Say, 1/16 of ImageNet can be retrieved. Pin Downloader Pin Saver has an APK download size of 22.93 MB and the latest version available is 1.0.1. Pin Downloader Pin Saver is FREE to download. DescriptionPin Downloader Pin Saver APK Download for Android - Latest
If necessary.Auto-download Let Ninja Pinner filter the top pins for you, then download them automatically to your own computer.Auto-upload Mass upload your own folder of images from your computer to any of your Pinterest boards, with your own custom description and source URL.Superlike feature Target users and like their recent pins (you can specify how many). Much more effective than just liking a single pin!Target filtered users and pins Filter users by number of followers, followings, pins, boards or likes. Filter pins by number of likes and repins.Account protection Use a random time delay setting as well as “breaks” at intervals to stay under the radar and avoid getting flagged for spamming.Proxy support Although not strictly necessary, you can hide your IP if you feel the need. Private proxies are also supported.Blacklist/whitelist Avoid unfollowing your own known friends, or following, commenting, etc. certain people you would like to avoid.Import/Export ID’s Have a third-party list of users you want to follow? No problem! You can also export the usernames or pin ID’s to a text file to process elsewhere.Multiple accounts Perform all these actions on one account, or multiple accounts simultaneously.Top notch support We strive to answer all messages within 24 hours (weekdays) and deliver regular updates to keep the software running bug-free.Software ReviewPin Downloader Pin Saver for Android - Free App Download
NinjaPinner Cracked – Best Pinterest Bot – Free Download Ninja Pinner CrackWhat makes Ninja Pinner so special?Mass follow targeted Pinterest users, from any location in Pinterest (search results, categories, board followers, a particular pin’s repinners/likers, etc.)Mass unfollow users with various settings, such as only those who don’t follow you back or only users followed more than X days ago.Find the most liked and repinned pins and automatically repin them to your own boards, with the option to change the description (spintax allowed!).Mass like thousands of other finely targeted and filtered pins on Pinterest with the click of a button.Automatically leave comments from a preset list on your targeted pins. Spintax allowed!Automatically invite all your followers to your group boards, or uninvite them if necessary.Let Ninja Pinner filter the top pins for you, then download them automatically to your own computer.Mass upload your own folder of images from your computer to any of your Pinterest boards, with your own custom description and source URL.Target users and like their recent pins (you can specify how many). Much more effective than just liking a single pin!iconTarget filtered users and pinsFilter users by number of followers, followings, pins, boards or likes. Filter pins by number of likes and repins.Use a random time delay setting as well as “breaks” at intervals to stay under the radar and avoid getting flagged for spamming.Although not strictly necessary, you can hide your IP if you feel the need. Private proxies are also supported.Avoid unfollowing your own known friends, or following, commenting, etc. certain people you would like to avoid.Have a third-party list of users you want to follow? No problem! You can also export the usernames or pin ID’s to a text file to process elsewhere.FEATURES :Auto-follow Mass follow targeted Pinterest users, from any location in Pinterest (search results, categories, board followers, a particular pin’s repinners/likers, etc.)Auto-unfollow Mass unfollow users with various settings, such as only those who don’t follow you back or only users followed more than X days ago.Auto-repin Find the most liked and repinned pins and automatically repin them to your own boards, with the option to change the description (spintax allowed!).Auto-like Mass like thousands of other finely targeted and filtered pins on Pinterest with the click of a button.Auto-comment Automatically leave comments from a preset list on your targeted pins. Spintax allowed!Auto-invite Automatically invite all your followers to your group boards, or uninvite themTimesavers - Pins (Escutcheon Pins, Dial Pins, Tapered Pins)
Download Article Download Article Nobody likes getting locked out of their home. While locksmiths often do a good job, their services can be pricey and time-consuming. If you’re looking for an alternative solution, you might be able to let yourself in with the help of 2 bobby pins. Bend back the pin so that you have a long piece of metal wire. This will be your pick, and is inserted into the lock and used to move the pins out of the way.Strip off the rubber knobs on the ends, as they will only get in the way. You can do this with your teeth, or a pair of wire cutters if you have them.[1] Stick the pin into your lock roughly one centimeter. The flat side should be facing up. Push the rest of the pin to the left, bending the end of the pin slightly. It only needs to curl up a few millimeters.You'll end up pushing the pin roughly 2 or 3 inches to the left to get the right bend.Advertisement Take one end of your pick and bend half of it back on itself, creating a little loop.[2] This is simply so that the pick is easier to hold and put pressure on. This is easiest with a pair of pliers, but you can do it with your fingers with a little persistence.[3] The lever acts like the key-- turning the actual lock once you've moved the pins (which keep the lock secure) out of the way with your pick. You simply want the bent half off the pin (away from the rubber ends) to be at a right angle from the rest bottom of the pin. A typical lock is made up of two parts: the barrel and the pins. The barrel is the chamber you put the key into. The pins are small metal cylinders that sink into the barrel, holding it in place until a key (or your pick) pushes them up and out of the way. The pins are cut in half, and when the halfway mark lines up with the barrel. Pin Downloader Pin Saver has an APK download size of 22.93 MB and the latest version available is 1.0.1. Pin Downloader Pin Saver is FREE to download. Description Download ASAP Utilities No need to make any changes to the default options. (See below) Pin. Pin. Pin. Pin. Pin. Pin. Pin. Pin. Pin. Once installed it appears along with the top row ofComments
ΕπισκόπησηPinterest Enhanced Experience - Fixed Height | Full Size images Download | Google Image Search | Arrow Keys Navigation through pinsThe usual Pinterest, but more practical and efficient!With this extension you will be able to focus on content and images, with an enhanced UI and without any distraction.The key features are:- ALL PINS HAVE THE SAME HEIGHT, so too large images will not draw all your attention.- PINS INFORMATION WILL APPEAR ONLY ON MOUSE OVER, let you pay more attention to images- LONG PINS WILL SLIDE ON MOUSE OVER, so it will be not always necessary to open it to examine it.- NAVIGATE through pins with LEFT and RIGHT keys.- DOWNLOAD pin images.- SEARCH IMAGES ON GOOGLE.And, if you want to revert to normal Pinterest, you have simply to click the icon in the address bar!Give it a try :)*** LAST VERSION CHANGELOG ***Version 1.6 (January 18, 2016)Bugfix: Fixed Split Module Layout.Bugfix: Fixed pin link position: now it's a button under like button.Bugfix: Fixed Download and search buttons position.Version 1.5 (August 11, 2015)Removed: Removed Arrow Kyes Navigation through pins due to incompatibility with the new nativa feature of pinterest that provide the same feature.Feature:Now Pinterest Enhanced is Open Source on GitHub.Bugfix: Minor improvements.Version 1.4 (February 07, 2015)Bugfix: It works again!Feature: Fixed Height Pins and Extra Features separated: now you can disable one or both separately.Version 1.3.5 (October 01, 2014)Bugfix: Now download button starts the download insteed open a new tab.Bugfix: Fixed "Notify me on Pinterest Enhanced updates" option's bug.Thanks for feedbacks, bugs reporting and advices.Version 1.3 (September 26, 2014)Feature: Use left and right keys to navigate through pins.Feature: Added Download button.Feature: Added Google Image Search button.Feature: Pin description only on mouse over out of beta.Bugfix: Fixed height of some elements.Bugfix: Cleaned up and reorganized the code.Version 1.2.5 (September 16, 2014)Feature: Option to show pin description only on mouse over [BETA]Version 1.2.1 (September 07, 2014)Feature: Option page - initial releaseFeature: Added notification on extension update.Feature: Grant possibility to choose pin size, scolling and centering options.Feature: Automatic adjustment of scrolling animation speed based on image size.Feature: Vertical centering of small images into pin box.Bugfix: Fixed Gif button position.Bugfix: Now only images longer than pin box will slide.Bugfix: Fixed "Add a pin" box height.Bugfix: Changed image scroll animation to linear.ΛεπτομέρειεςΈκδοση1.6Ενημέρωση18 Ιανουαρίου 2016Προσφέρεται απόLorenzo ZottarΜέγεθος438KiBΓλώσσεςΜη επαγγελματίας έμποροςΑυτός ο προγραμματιστής δεν έχει αυτοπροσδιοριστεί ως έμπορος. Εάν είστε καταναλωτές στην Ευρωπαϊκή Ένωση, λάβετε υπόψη ότι τα
2025-03-31OverviewThe Easiest Way to Sort Your Pinterest Pins Automatically!Introducing the ultimate solution for Pinterest lovers! Our Chrome extension is a game-changer, providing you with the easiest way to sort your Pinterest pins automatically. With just a few clicks, you can easily organize your pins by date of creation, saves, repins, comments, and much more, saving you valuable time and effort.But that's not all. Our extension also allows you to access detailed insights into each pin, giving you a greater understanding of what's working and what's not. This advanced feature is perfect for those who want to optimize their Pinterest strategy and take their Pins to the next level.And with our free download options for Pinterest pictures and videos, you'll always have quick and easy access to the content you need. Our Pinterest scraping tool also makes it super simple to extract data from your Pins and use it to inform your marketing and content strategy.Whether you're a Pinterest pro or just starting out, our extension is a must-have for anyone serious about organizing and optimizing their Pins. So why wait? Download our extension today and start taking your Pinterest game to the next level!Have a great time on your Pins!!------------------------------------ Features ------------------------------------- View hidden data of each Pin.- Find and identify the best-performing viral Pin.- Find Pinterest Ad Library.- Filter effective advertising data on Pinterest.- Identify Boards allowed to join and pin effectively.- Pinterest Email Finder & Leads Finder.- Filter Collaborator Requests Boards.- Free download high-quality Pinterest story, video, and image.- Start Scroll: Automatically scroll through Pinterest pages for effortless browsing and data collection.DetailsVersion1.9.1UpdatedMarch 10, 2025FeaturesOffers in-app purchasesSize444KiBLanguagesDeveloper Website Email [email protected] developer has not identified itself as a trader. For consumers in the European Union, please note that consumer rights do not apply to contracts between you and this developer.PrivacyPinterest sort extension - SortPin.com has disclosed the following information regarding the collection and usage of your data. More detailed information can be found in the developer's privacy policy.Pinterest sort extension - SortPin.com handles the following:This developer declares that your data isNot being sold to third parties, outside of the approved
2025-04-18If necessary.Auto-download Let Ninja Pinner filter the top pins for you, then download them automatically to your own computer.Auto-upload Mass upload your own folder of images from your computer to any of your Pinterest boards, with your own custom description and source URL.Superlike feature Target users and like their recent pins (you can specify how many). Much more effective than just liking a single pin!Target filtered users and pins Filter users by number of followers, followings, pins, boards or likes. Filter pins by number of likes and repins.Account protection Use a random time delay setting as well as “breaks” at intervals to stay under the radar and avoid getting flagged for spamming.Proxy support Although not strictly necessary, you can hide your IP if you feel the need. Private proxies are also supported.Blacklist/whitelist Avoid unfollowing your own known friends, or following, commenting, etc. certain people you would like to avoid.Import/Export ID’s Have a third-party list of users you want to follow? No problem! You can also export the usernames or pin ID’s to a text file to process elsewhere.Multiple accounts Perform all these actions on one account, or multiple accounts simultaneously.Top notch support We strive to answer all messages within 24 hours (weekdays) and deliver regular updates to keep the software running bug-free.Software Review
2025-04-24NinjaPinner Cracked – Best Pinterest Bot – Free Download Ninja Pinner CrackWhat makes Ninja Pinner so special?Mass follow targeted Pinterest users, from any location in Pinterest (search results, categories, board followers, a particular pin’s repinners/likers, etc.)Mass unfollow users with various settings, such as only those who don’t follow you back or only users followed more than X days ago.Find the most liked and repinned pins and automatically repin them to your own boards, with the option to change the description (spintax allowed!).Mass like thousands of other finely targeted and filtered pins on Pinterest with the click of a button.Automatically leave comments from a preset list on your targeted pins. Spintax allowed!Automatically invite all your followers to your group boards, or uninvite them if necessary.Let Ninja Pinner filter the top pins for you, then download them automatically to your own computer.Mass upload your own folder of images from your computer to any of your Pinterest boards, with your own custom description and source URL.Target users and like their recent pins (you can specify how many). Much more effective than just liking a single pin!iconTarget filtered users and pinsFilter users by number of followers, followings, pins, boards or likes. Filter pins by number of likes and repins.Use a random time delay setting as well as “breaks” at intervals to stay under the radar and avoid getting flagged for spamming.Although not strictly necessary, you can hide your IP if you feel the need. Private proxies are also supported.Avoid unfollowing your own known friends, or following, commenting, etc. certain people you would like to avoid.Have a third-party list of users you want to follow? No problem! You can also export the usernames or pin ID’s to a text file to process elsewhere.FEATURES :Auto-follow Mass follow targeted Pinterest users, from any location in Pinterest (search results, categories, board followers, a particular pin’s repinners/likers, etc.)Auto-unfollow Mass unfollow users with various settings, such as only those who don’t follow you back or only users followed more than X days ago.Auto-repin Find the most liked and repinned pins and automatically repin them to your own boards, with the option to change the description (spintax allowed!).Auto-like Mass like thousands of other finely targeted and filtered pins on Pinterest with the click of a button.Auto-comment Automatically leave comments from a preset list on your targeted pins. Spintax allowed!Auto-invite Automatically invite all your followers to your group boards, or uninvite them
2025-04-14Likes, comments or creation date with this marketing analyzer toolPins Peep 👀5.0(1)Peep Pins on PinterestTwtData - Twitter Stats & Data Download0.0(0)Get instant stats and explore data options. View user stats and effortlessly buy and download the Twitter data you need.Statistok5.0(8)Connect TikTok with StatistokNumici - annotate, collaborate and synthesize4.0(3)Use Numici to organize, highlight, annotate and synthesize content in web pages and documents collaboratively or individually.Pinterest AI Helper5.0(1)Your AI assistant that helps you create Pins effortlesslyPindodo - Pinterest Ranking/Keyword Tool4.7(12)Get huge traffic with your Pinterest pinsShare To Facebook Twitter Pinterest5.0(3)Utility to share on current URL on Facebook, Twitter, Pinterest a simple, effective wayPinterest sort extension - SortPin.com4.2(24)The Easiest Way to Sort Your Pinterest Pins Automatically!Autopinner3.7(13)Effortless growth for your pinterest!Tiktok Analytics for Videos0.0(0)Latest Tiktok Video Data Report for Tiktok Users.TOKscrape - TikTok Advanced Analytics Tool4.0(8)Unlock the full potential of your TikTok data with our advanced analytics. Turn your TikTok Data into a TikTok Strategy that works!Pinterest Pin Stats - Sort Pins5.0(6)Reveal Pinterest stats for each pin! Sort pins by likes, comments or creation date with this marketing analyzer toolPins Peep 👀5.0(1)Peep Pins on PinterestTwtData - Twitter Stats & Data Download0.0(0)Get instant stats and explore data options. View user stats and effortlessly buy and download the Twitter data you need.
2025-03-29खास जानकारीPinterest Enhanced Experience - Fixed Height | Full Size images Download | Google Image Search | Arrow Keys Navigation through pinsThe usual Pinterest, but more practical and efficient!With this extension you will be able to focus on content and images, with an enhanced UI and without any distraction.The key features are:- ALL PINS HAVE THE SAME HEIGHT, so too large images will not draw all your attention.- PINS INFORMATION WILL APPEAR ONLY ON MOUSE OVER, let you pay more attention to images- LONG PINS WILL SLIDE ON MOUSE OVER, so it will be not always necessary to open it to examine it.- NAVIGATE through pins with LEFT and RIGHT keys.- DOWNLOAD pin images.- SEARCH IMAGES ON GOOGLE.And, if you want to revert to normal Pinterest, you have simply to click the icon in the address bar!Give it a try :)*** LAST VERSION CHANGELOG ***Version 1.6 (January 18, 2016)Bugfix: Fixed Split Module Layout.Bugfix: Fixed pin link position: now it's a button under like button.Bugfix: Fixed Download and search buttons position.Version 1.5 (August 11, 2015)Removed: Removed Arrow Kyes Navigation through pins due to incompatibility with the new nativa feature of pinterest that provide the same feature.Feature:Now Pinterest Enhanced is Open Source on GitHub.Bugfix: Minor improvements.Version 1.4 (February 07, 2015)Bugfix: It works again!Feature: Fixed Height Pins and Extra Features separated: now you can disable one or both separately.Version 1.3.5 (October 01, 2014)Bugfix: Now download button starts the download insteed open a new tab.Bugfix: Fixed "Notify me on Pinterest Enhanced updates" option's bug.Thanks for feedbacks, bugs reporting and advices.Version 1.3 (September 26, 2014)Feature: Use left and right keys to navigate through pins.Feature: Added Download button.Feature: Added Google Image Search button.Feature: Pin description only on mouse over out of beta.Bugfix: Fixed height of some elements.Bugfix: Cleaned up and reorganized the code.Version 1.2.5 (September 16, 2014)Feature: Option to show pin description only on mouse over [BETA]Version 1.2.1 (September 07, 2014)Feature: Option page - initial releaseFeature: Added notification on extension update.Feature: Grant possibility to choose pin size, scolling and centering options.Feature: Automatic adjustment of scrolling animation speed based on image size.Feature: Vertical centering of small images into pin box.Bugfix: Fixed Gif button position.Bugfix: Now only images longer than pin box will slide.Bugfix: Fixed "Add a pin" box height.Bugfix: Changed image scroll animation to linear.वर्णनवर्शन1.6पिछली बार अपडेट होने की तारीख:18 जनवरी 2016ऑफ़र करने वालाLorenzo Zottarआकार438KiBभाषाएंगैर-व्यापारीइस डेवलपर ने अपनी पहचान व्यापारी के तौर पर ज़ाहिर नहीं की है. अगर आप यूरोपियन संघ के किसी देश में रहने वाले उपभोक्ता हैं, तो आपके और डेवलपर के बीच हुए समझौते पर उपभोक्ता के अधिकार लागू नहीं होंगे.निजताडेवलपर ने आपके डेटा को इकट्ठा करने या उसका इस्तेमाल करने के बारे में कोई जानकारी नहीं दी है.सहायता
2025-04-01