AlwaysKillSticky
Get rid of sticky elements on websites - permanently!
AlwaysKillStickyとは何ですか?
AlwaysKillStickyはSaid Achmizによって開発されたChromeの拡張機能で、その主な機能は「Get rid of sticky elements on websites - permanently!」です。
拡張機能のスクリーンショット
AlwaysKillSticky拡張機能のCRXファイルをダウンロード
AlwaysKillSticky拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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).
拡張機能の基本情報
名前 | AlwaysKillSticky |
ID | oolchklbojaobiipbmcnlgacfgficiig |
公式URL | https://chromewebstore.google.com/detail/alwayskillsticky/oolchklbojaobiipbmcnlgacfgficiig |
説明 | Get rid of sticky elements on websites - permanently! |
ファイルサイズ | 141 KB |
インストール数 | 144 |
現在のバージョン | 1.3.4 |
最終更新日 | 2020-07-20 |
公開日 | 2020-01-27 |
評価 | 4.50/5 合計 6 レビュー |
開発者 | Said Achmiz |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://git.sr.ht/~achmizs/AlwaysKillSticky.git |
対応言語 | 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" } |