AlwaysKillSticky

Get rid of sticky elements on websites - permanently!

AlwaysKillSticky क्या है?

AlwaysKillSticky Said Achmiz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get rid of sticky elements on websites - permanently!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AlwaysKillSticky एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}