Kill-Sticky

Remove all elements with fixed or sticky positions

¿Qué es Kill-Sticky?

Kill-Sticky es una extensión de Chrome desarrollada por Unknown, y su función principal es "Remove all elements with fixed or sticky positions".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Kill-Sticky

Descarga archivos de extensión Kill-Sticky 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

                        Lets you get rid of distracting headers and ads by adding a browser action and a keyboard shortcut (Alt+K on Windows & Linux, Cmd+K on macOS) that removes all elements from the current page that have a "fixed" or "sticky" position, and re-enables scrolling for the page contents.

To change the keyboard shortcut, visit the page chrome://extensions/shortcuts                    

Información Básica de la Extensión

Nombre Kill-Sticky Kill-Sticky
ID lekjlgffkaencjnlcmbgibodhechofdb
URL Oficial https://chromewebstore.google.com/detail/kill-sticky/lekjlgffkaencjnlcmbgibodhechofdb
Descripción Remove all elements with fixed or sticky positions
Tamaño del Archivo 3.43 KB
Cantidad de Instalaciones 1,506
Versión Actual 1.4.0
Última Actualización 2019-06-06
Fecha de Publicación 2019-06-05
Calificación 5.00/5 Total de 8 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Sitio Web de la Extensión https://github.com/eemeli/chrome-kill-sticky
URL de la Página de Ayuda https://github.com/eemeli/chrome-kill-sticky/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Remove all elements with fixed or sticky positions"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+K",
                "mac": "Command+K"
            }
        }
    },
    "description": "Remove all elements with fixed or sticky positions",
    "manifest_version": 2,
    "name": "Kill-Sticky",
    "permissions": [
        "activeTab"
    ],
    "version": "1.4.0"
}