Up Button

Like a back button, but for places you pause vertically on a page!

Up Button क्या है?

Up Button Will द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Like a back button, but for places you pause vertically on a page!"।

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

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

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

                        This plugin will mark when you pause on a section of a page, allowing you to navigate vertically.

I wrote this because I spend so much time reading documentation, and need to reference several places in the same doc - so it makes sense to be able to jump to places that you were reading previously!

Works great for:
* research
* documentation
* long pages, lost places

Want to contribute / report bug / request feature? Project is on GitHub at: https://github.com/fowlerwill/UpButton                    

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

नाम Up Button Up Button
ID hnigeamcjfgobhbiommihjdnbdcldoph
आधिकारिक URL https://chrome.google.com/webstore/detail/up-button/hnigeamcjfgobhbiommihjdnbdcldoph
विवरण Like a back button, but for places you pause vertically on a page!
फ़ाइल का आकार 7.95 KB
स्थापना संख्या 24
वर्तमान संस्करण 0.0.15
अंतिम अपडेट 2016-01-17
प्रकाशन तिथि 2016-01-17
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Will
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.15",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "updownbuttons"
    }
}