Better Back Button

A history stack that doesn't discard the forward entries when you navigate.

Better Back Button क्या है?

Better Back Button shawn.hoover द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A history stack that doesn't discard the forward entries when you navigate."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Better Back Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Have you ever noticed how browser history disappears when you're clicking back and forward a lot and then click on a link on a page? This extension helps by making sure your most recently visited sites stay available in one handy dropdown. You can skip opening a new tab for everything under the sun, knowing you won't lose track of where you've been.

See the web site for keyboard usage.

Derived from Dropdown List of Most Visited Links.                    

एक्सटेंशन की मूल जानकारी

नाम Better Back Button Better Back Button
ID mnjmflfpbdlhinbldepdfegnhldplgnd
आधिकारिक URL https://chromewebstore.google.com/detail/better-back-button/mnjmflfpbdlhinbldepdfegnhldplgnd
विवरण A history stack that doesn't discard the forward entries when you navigate.
फ़ाइल का आकार 46.88 KB
स्थापना संख्या 270
वर्तमान संस्करण 0.4
अंतिम अपडेट 2015-08-01
प्रकाशन तिथि 2015-08-01
रेटिंग 4.83/5 कुल 6 रेटिंग्स
डेवलपर shawn.hoover
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bitbucket.org/shoover/better-back-button
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Back Button",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "A history stack that doesn't discard the forward entries when you navigate.",
    "icons": {
        "19": "icon19.png",
        "38": "icon38.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/"
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}