Up Button

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

Cos'è Up Button?

Up Button è un'estensione di Chrome sviluppata da Will, e la sua funzione principale è "Like a back button, but for places you pause vertically on a page!".

Scarica il file CRX dell'estensione Up Button

Scarica i file di estensione Up Button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Up Button Up Button
ID hnigeamcjfgobhbiommihjdnbdcldoph
URL Ufficiale https://chrome.google.com/webstore/detail/up-button/hnigeamcjfgobhbiommihjdnbdcldoph
Descrizione Like a back button, but for places you pause vertically on a page!
Dimensione del File 7.95 KB
Conteggio Installazioni 24
Versione Corrente 0.0.15
Ultimo Aggiornamento 2016-01-17
Data di Pubblicazione 2016-01-17
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Will
Tipo di Pagamento free
Lingue Supportate 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"
    }
}