JumpBack Button

Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.

What is JumpBack Button?

JumpBack Button is a Chrome extension developed by Brian Slakter and Andrew Packer, and its main feature is "Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.".

Download JumpBack Button Extension CRX File

Download JumpBack Button 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

                        --JumpBack Button--
August 21, 2014
Extension Created by Brian Slakter and Andrew Packer

This extension allows a user to navigate back in their browser history, skipping over pages with a URL that match the current page URL up to its final directory. As an example, the JumpBack Button can be used to return to a Yelp search after navigating through photos of a restaurant.  Also useful for websites that contain articles in slideshow format.                    

Extension Basic Information

Name JumpBack Button JumpBack Button
ID diikgjokohdfgpcbgpnebjknpfoadfda
Official URL https://chrome.google.com/webstore/detail/jumpback-button/diikgjokohdfgpcbgpnebjknpfoadfda
Description Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.
File Size 11.05 KB
Installation Count 10
Current Version 1.1
Last Updated 2014-08-22
Publish Date 2014-08-22
Rating 5.00/5 Total 1 Ratings
Developer Brian Slakter and Andrew Packer
Payment Type free
Extension Website https://github.com/bslakter/JumpBackButton/
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JumpBack Button",
    "short_name": "JumpBack",
    "description": "Navigate back in browser history, skipping over pages with a URL that match the current page URL up to its final directory.",
    "version": "1.1",
    "permissions": [
        "history",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    }
}