No more Lightshot ADS

Lightshot tool ads remover

Τι είναι το No more Lightshot ADS;

Το No more Lightshot ADS είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://andrei.win, και η κύρια λειτουργία του είναι "Lightshot tool ads remover".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης No more Lightshot ADS

Λήψη αρχείων επέκτασης No more Lightshot ADS σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        INITIAL DESCRIPTION


A small extension that unloads those pesky random class name ads on the Lightshot image viewer. It works by automatically selecting the divs by their XPATH and injecting a new class, one which we can control with simple CSS. The actual hiding is done by sending the respective divs to -99999px.

---------------------

Version 2:

Seems like they updated the site and the names of the divs and classes are not random anymore. Because of this the extension itself is a bit redundant as I think uBlock Origin will probably be working now.

Icons: https://www.flaticon.com/free-icon/no-entry_1661919 and https://www.flaticon.com/free-icon/ads_983841

Also sorry for forgetting about this for 3 years. Came back to me as an offer to buy the extension. As I hate solo devs selling their code to companies that monetise it, I didn't, to try to set an example (you hear me quickpik dev??). Plus the code itself is so simple it wouldn't have been wort much either way.

So uh, changelog

* updated to adapt to the new code running on lightshot
* also applies to their homepage
* added fancy new icon
* version number changed from 1.1 to 2.0

No tracking no anything, just rewriting some CSS.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα No more Lightshot ADS No more Lightshot ADS
ID fiefoaeemgdpplhofbhkdehoidoajfld
Επίσημο URL https://chromewebstore.google.com/detail/no-more-lightshot-ads/fiefoaeemgdpplhofbhkdehoidoajfld
Περιγραφή Lightshot tool ads remover
Μέγεθος Αρχείου 40.83 KB
Αριθμός Εγκαταστάσεων 1,343
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2019-09-29
Ημερομηνία Δημοσίευσης 2019-09-29
Αξιολόγηση 4.57/5 Συνολικά 35 Αξιολογήσεις
Προγραμματιστής https://andrei.win
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No more Lightshot ADS",
    "version": "2.0",
    "description": "Lightshot tool ads remover",
    "icons": {
        "16": "lightshot-ads.png",
        "48": "lightshot-ads.png",
        "128": "lightshot-ads.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "all_frames": true,
            "matches": [
                "*:\/\/prnt.sc\/*",
                "https:\/\/prnt.sc\/"
            ]
        }
    ]
}