Kill-Sticky
Remove all elements with fixed or sticky positions
Hvad er Kill-Sticky?
Kill-Sticky er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Remove all elements with fixed or sticky positions".
Udvidelsesskærmbilleder
Download Kill-Sticky-udvidelses-CRX-fil
Download Kill-Sticky-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Kill-Sticky |
ID | lekjlgffkaencjnlcmbgibodhechofdb |
Officiel URL | https://chromewebstore.google.com/detail/kill-sticky/lekjlgffkaencjnlcmbgibodhechofdb |
Beskrivelse | Remove all elements with fixed or sticky positions |
Filstørrelse | 3.43 KB |
Antal Installationer | 1,506 |
Nuværende Version | 1.4.0 |
Senest Opdateret | 2019-06-06 |
Udgivelsesdato | 2019-06-05 |
Bedømmelse | 5.00/5 Samlet 8 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/eemeli/chrome-kill-sticky |
Hjælpeside-URL | https://github.com/eemeli/chrome-kill-sticky/issues |
Understøttede Sprog | 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" } |