No more Lightshot ADS

Lightshot tool ads remover

No more Lightshot ADS란 무엇입니까?

No more Lightshot ADS은(는) https://andrei.win에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lightshot tool ads remover"입니다.

확장 프로그램 스크린샷

screenshot

No more Lightshot ADS 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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\/"
            ]
        }
    ]
}