Tumblr Collage

A revolutionary way to browse Tumblr photo blogs

What is Tumblr Collage?

Tumblr Collage is a Chrome extension developed by Xiaoxin, and its main feature is "A revolutionary way to browse Tumblr photo blogs".

Extension Screenshots

screenshot
screenshot

Download Tumblr Collage Extension CRX File

Download Tumblr Collage extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A simple click displays the blog in a beautiful interactive photo collage. Nothing but photographs; no fluff, no text, and no weird layouts to slow you down.

INSTRUCTIONS: The Tumblr Collage icon appears on the right side of the address bar when you visit a Tumblr blog. Clicking on this icon will open a new tab displaying the blog's photos in a dynamic collage. Simply scroll down to see more.

Bugs or Suggestions? Use the "Send Feedback" button located on the Details tab.

New in 1.4.9

★ Received feedback what this extension is hard to use! Added a help page displayed for new installs.

New in 1.4.8

☂ Fixed issue with linking to tumblr account this may include viewing your Dashboard and Likes

New in 1.4.7

★ View the blog owner's Likes as a photo collage!

This feature can be switched on in the Extension's Options page. Change the behavior of the collage icon (appears to the right of the address bar) to view the Likes. Change the icon click to display shared Likes, blog posts only or be prompted to pick either.
*Note: Viewing a user's Likes depends on their privacy setting.

New in 1.4.6

★ Reblog or Like posts directly from collage view through the context menu  (right click on an image). Linking with your tumblr account is required to use this feature.

New in 1.4.5.6

☂ Fixed issue with linking to tumblr account 

New in 1.4.5.5

☂ Fixed issue with Link to tumblr button not appearing under Options. (Tumblr API now requires a callback url. Previously oob worked. They fixed that bug)

New in 1.4.5.4

☂ Trying to address some performance concerns with resume browsing.

New in 1.4.5.3

☂ Fixed issue where collage icon did not appear for some Tumblr blogs.

New in 1.4.5.2

☂ Fixed issue where zooming in on the image didn't zoom until the full image was loaded.

New in 1.4.5.1

☂ Fixed issue with updating the collage item width in options not reflecting on all open collages. And resumed collages should now update their width based on size given in options page.

New in 1.4.5

★ New Resume Browsing feature allows you to pick up right where you left off after closing the Collage tab. Works on Dashboard or collage view of any Tumblr blog.
★ Resume Browsing: A indicator appears when new posts appears on your Dashboard.

New in 1.4.4.3

☂ Fixed issue with linking to your tumblr account in options. Thanks Adrian!

New in 1.4.4.2

☂ Fixed issue where the presence of photo sets could exclude some posts from being displayed in the collage

New in 1.4.4.1

☂ Update to handle Tumblr's undocumented limitations in their API. (i.e. Dashboard can only retrieve the last 250 posts, and Likes only go to the max of 1,000 posts) 

New in 1.4.4

★ Performance: Faster icon activation for blogs that live under the tumblr.com domain (noticeable difference w/ lots of Ads)
★ Added hot key  'f' to toggle Full screen
★ Tweaked transitions (feels snappier)
★ Added experimental feature to preload previous and next photos of the currently enlarged photo (enable under Options)


TIP: A Tumblr Collage tab can be bookmarked for later browsing (even though you see an empty address bar)

✔ Photo collage loads in a new tab leaving your normal browsing experience alone
✔ New photos are automatically loaded as you scroll towards the end until all photos are loaded (infinite-scrolling)
✔ Photos thumbnails are automatically ordered and positioned into a collage through an attractive animation even when you re-size your window
✔ Photo thumbnails can be customized on the option page
✔ Clicking on a photo will enlarge the photo for best fit
✔ Navigate to previous enlarged photos using forward and back buttons
✔ Enlarge the next photo post using right arrow key and previous using left arrow key
    (Note: the next or previous post may not be the physically adjacent photo)
✔ CTRL (or Command in a Mac) clicking on the photograph will load the post for that photo in a new tab
✔ Ability to Like a Photo Post by pressing the Enter key on an enlarged photo*
✔ Browse your Tumblr Dashboard in collage mode (go to your Dashboard and click on the collage icon)
✔ Browse your Likes the same way by go to your Likes page and click on the collage icon*
✔ Liked posts have a heart next to the photo
✔ Faster loading of the Page Action on slow loading Tumblr blogs

*This feature requires linking Tumblr Collage to your Tumblr account (only need to do this once on the Options page)                    

Extension Basic Information

Name Tumblr Collage Tumblr Collage
ID fmfgcipfpihnkblbbemdagfdhjjeilli
Official URL https://chromewebstore.google.com/detail/tumblr-collage/fmfgcipfpihnkblbbemdagfdhjjeilli
Description A revolutionary way to browse Tumblr photo blogs
File Size 470 KB
Installation Count 10,772
Current Version 1.4.9
Last Updated 2014-06-20
Publish Date 2014-06-19
Rating 3.81/5 Total 329 Ratings
Developer Xiaoxin
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tumblr Collage",
    "version": "1.4.9",
    "description": "A revolutionary way to browse Tumblr photo blogs",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "images\/mosaic-icon.png",
        "default_title": "Browse in Tumblr Collage"
    },
    "background": {
        "scripts": [
            "js\/lib\/jquery-2.1.0.min.js",
            "js\/lib\/jsOAuth-1.3.6.js",
            "js\/chrome_background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "128": "images\/128logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.tumblr.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/chrome_content_script.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tumblr.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/tumblr_content_script.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/",
        "alarms",
        "tabs"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "incognito": "split",
    "minimum_chrome_version": "22"
}