AlwaysKillSticky

Get rid of sticky elements on websites - permanently!

AlwaysKillSticky란 무엇입니까?

AlwaysKillSticky은(는) Said Achmiz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get rid of sticky elements on websites - permanently!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

AlwaysKillSticky 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
}