PopChome

Easily jump back and forth between locations on a webpage (handy for wikipedia, journals, shopping cites, etc.)

¿Qué es PopChome?

PopChome es una extensión de Chrome desarrollada por Neil Vyas, y su función principal es "Easily jump back and forth between locations on a webpage (handy for wikipedia, journals, shopping cites, etc.)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión PopChome

Descarga archivos de extensión PopChome en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        PopChrome allows you to save positions on a webpage, and then easily return to them later.

Use Control+K (Command+K for Mac) to "push" a position, then use Shift+Control+K (Shift+Command+K for mac) to return to it. 

Ever read a long text post? You read and find something interesting that you want to return to later, but keep reading past it. Maybe you used to highlight some text and frantically scroll back, searching for it. Maybe you opened the webpage in a new tab, and continued reading there. Or maybe, you just made a mental note and hoped you'd remember - only to forget when you hit the bottom.

With PopChrome, this dilemma is as extinct as australopithecus. Just hit Control + K when you find something interesting, and Shift + Control + K to return to it at your convenience. Pressing Shift + Control + K again returns you to where you Popped from, when you are at your Pushed location.

Great for sites like wikipedia and stackoverflow, where you need to reference earlier portions of an article often!

Check out my GitHub at https://github.com/neilvyas/popchrome !

PopChrome doesn't work on sites that block script injection or rely on mutating the DOM to serve content, like facebook and fivethirtyeight. I'm working to add support for more websites that currently don't work properly.                    

Información Básica de la Extensión

Nombre PopChome PopChome
ID fboikkbagmlgiipifnlkfnmeplkcflbh
URL Oficial https://chrome.google.com/webstore/detail/fboikkbagmlgiipifnlkfnmeplkcflbh
Descripción Easily jump back and forth between locations on a webpage (handy for wikipedia, journals, shopping cites, etc.)
Tamaño del Archivo 17.97 KB
Cantidad de Instalaciones 41
Versión Actual 1.1
Última Actualización 2014-09-09
Fecha de Publicación 2014-09-09
Calificación 4.00/5 Total de 2 Calificaciones
Desarrollador Neil Vyas
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PopChome",
    "description": "Easily jump back and forth between locations on a webpage (handy for wikipedia, journals, shopping cites, etc.)",
    "version": "1.1",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "inject.js",
        "notify.js",
        "inject_jQ.js"
    ],
    "icons": {
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "push": {
            "suggested_key": {
                "default": "Ctrl+K"
            },
            "description": "push current screen position"
        },
        "pop": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "pop to pushed screen position"
        }
    }
}