Kill-Sticky

Remove all elements with fixed or sticky positions

O que é Kill-Sticky?

Kill-Sticky é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Remove all elements with fixed or sticky positions".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Kill-Sticky

Baixe arquivos de extensão Kill-Sticky no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Kill-Sticky Kill-Sticky
ID lekjlgffkaencjnlcmbgibodhechofdb
URL Oficial https://chromewebstore.google.com/detail/kill-sticky/lekjlgffkaencjnlcmbgibodhechofdb
Descrição Remove all elements with fixed or sticky positions
Tamanho do Arquivo 3.43 KB
Contagem de Instalações 1,506
Versão Atual 1.4.0
Última Atualização 2019-06-06
Data de Publicação 2019-06-05
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Site da Extensão https://github.com/eemeli/chrome-kill-sticky
URL da Página de Ajuda https://github.com/eemeli/chrome-kill-sticky/issues
Idiomas Suportados 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"
}