AlwaysKillSticky

Get rid of sticky elements on websites - permanently!

Was ist AlwaysKillSticky?

AlwaysKillSticky ist eine Chrome-Erweiterung, die von Said Achmiz entwickelt wurde, und ihr Hauptmerkmal ist "Get rid of sticky elements on websites - permanently!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

AlwaysKillSticky-Erweiterungs-CRX-Datei herunterladen

Laden Sie AlwaysKillSticky-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        On sites/pages where it’s enabled, AlwaysKillSticky finds all elements whose position CSS property has a computed value of either ‘sticky’ or ‘fixed’, and removes those elements.

AlwaysKillSticky can work in blacklist mode (only killing stickies on sites you specify) or whitelist mode (killing stickies except on sites you specify).

AlwaysKillSticky also optionally allows fine-grained control of which sites and pages stickies are killed on (e.g., if you want to kill stickies on all sites on a domain, or if you want to exclude specific paths of a site).                    

Grundlegende Informationen zur Erweiterung

Name AlwaysKillSticky AlwaysKillSticky
ID oolchklbojaobiipbmcnlgacfgficiig
Offizielle URL https://chromewebstore.google.com/detail/alwayskillsticky/oolchklbojaobiipbmcnlgacfgficiig
Beschreibung Get rid of sticky elements on websites - permanently!
Dateigröße 141 KB
Installationsanzahl 144
Aktuelle Version 1.3.4
Letztes Update 2020-07-20
Veröffentlichungsdatum 2020-01-27
Bewertung 4.50/5 Insgesamt 6 Bewertungen
Entwickler Said Achmiz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://git.sr.ht/~achmizs/AlwaysKillSticky.git
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AlwaysKillSticky",
    "version": "1.3.4",
    "description": "Get rid of sticky elements on websites - permanently!",
    "author": "Said Achmiz",
    "homepage_url": "https:\/\/git.sr.ht\/~achmizs\/AlwaysKillSticky.git",
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "functions.js",
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "AlwaysKillSticky - Click the icon to control sticky-killing on this site!",
        "default_icon": {
            "16": "images\/AKS_off_16.png",
            "32": "images\/AKS_off_32.png",
            "48": "images\/AKS_off_48.png",
            "128": "images\/AKS_off_128.png"
        }
    },
    "icons": {
        "16": "images\/AKS_on_16.png",
        "32": "images\/AKS_on_32.png",
        "48": "images\/AKS_on_48.png",
        "128": "images\/AKS_on_128.png"
    },
    "options_page": "options.html"
}