Sticky Header Hider aka Fixed Header Fixer

Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…

Was ist Sticky Header Hider aka Fixed Header Fixer?

Sticky Header Hider aka Fixed Header Fixer ist eine Chrome-Erweiterung, die von https://emojistuff.com entwickelt wurde, und ihr Hauptmerkmal ist "Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Sticky Header Hider aka Fixed Header Fixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sticky Header Hider aka Fixed Header Fixer-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

                        Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while you scroll down the page.                    

Grundlegende Informationen zur Erweiterung

Name Sticky Header Hider aka Fixed Header Fixer Sticky Header Hider aka Fixed Header Fixer
ID eagncneohcoiofhknkofdobphnhgblad
Offizielle URL https://chromewebstore.google.com/detail/sticky-header-hider-aka-f/eagncneohcoiofhknkofdobphnhgblad
Beschreibung Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
Dateigröße 79.52 KB
Installationsanzahl 292
Aktuelle Version 0.1.01
Letztes Update 2020-10-02
Veröffentlichungsdatum 2017-12-16
Bewertung 4.06/5 Insgesamt 17 Bewertungen
Entwickler https://emojistuff.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.emojistuff.com
URL der Datenschutzrichtlinien-Seite https://www.growbotforfollowers.com/privacy-policy.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "",
    "default_locale": "en",
    "version": "0.1.01",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "backgroundscript.js",
            "hot-reload.js"
        ]
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage",
        "https:\/\/www.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "*.*"
    ]
}