Kill-Sticky

Remove all elements with fixed or sticky positions

Co to jest Kill-Sticky?

Kill-Sticky to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Remove all elements with fixed or sticky positions”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Kill-Sticky

Pobierz pliki rozszerzeń Kill-Sticky w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Kill-Sticky Kill-Sticky
ID lekjlgffkaencjnlcmbgibodhechofdb
Oficjalny URL https://chromewebstore.google.com/detail/kill-sticky/lekjlgffkaencjnlcmbgibodhechofdb
Opis Remove all elements with fixed or sticky positions
Rozmiar pliku 3.43 KB
Liczba instalacji 1,506
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2019-06-06
Data Publikacji 2019-06-05
Ocena 5.00/5 Łącznie 8 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/eemeli/chrome-kill-sticky
Adres URL Strony Pomocy https://github.com/eemeli/chrome-kill-sticky/issues
Obsługiwane Języki 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"
}