low—web

Reduce energy consumption and carbon footprint of your internet browsing.

low—web란 무엇입니까?

low—web은(는) lowwebtech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reduce energy consumption and carbon footprint of your internet browsing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

low—web 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension aims to reduce our datas and limit the energy consumption of our Internet browsing. 

The Internet consumes about 8% of the electricity produced worldwide and emits 3 to 4% of total greenhouse gas emissions. Every request and calculation are a small amounts of electricity consumed and we visit billions of pages and websites needing to run millions of servers or devices like telephones always more powerful and ever more obsolete.

Some optimisations are made for videos or images, if possible quality is set to low-definition.
Some "superfluous" content can also be blocked like share and like button, avatar images or fonts.

But do not forget, the reduction of Internet browsing must be done, but it will never have as much impact as the reduction of Internet manufacturing (and devices that connect to it). So keep your computers, phones... as long as possible, repair them or do not buy them!                    

확장 프로그램 기본 정보

이름 low—web low—web
ID jllfpicflcigpegdmejghjhaehdiabfj
공식 URL https://chromewebstore.google.com/detail/low%E2%80%94web/jllfpicflcigpegdmejghjhaehdiabfj
설명 Reduce energy consumption and carbon footprint of your internet browsing.
파일 크기 295 KB
설치 횟수 313
현재 버전 0.0.12
최근 업데이트 2020-10-21
출시 날짜 2020-02-07
평점 4.00/5 총 7 개의 평점
개발자 lowwebtech
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lowwebtech/low-web-extension
도움말 페이지 URL https://github.com/lowwebtech/low-web-extension/issues
개인정보 보호 정책 페이지 URL https://lowweb.tech/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "low\u2014web",
    "description": "Reduce energy consumption and carbon footprint of your internet browsing.",
    "version": "0.0.12",
    "short_name": "low\u2014web",
    "manifest_version": 2,
    "browser_specific_settings": {
        "gecko": {
            "id": "{ab9c153a-f2ef-4134-9675-97498ccc160f}"
        }
    },
    "applications": {
        "gecko": {
            "id": "{ab9c153a-f2ef-4134-9675-97498ccc160f}"
        }
    },
    "icons": {
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": "icons\/icon_32.png",
        "default_title": "low\u2014web",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "options.js",
        "players\/*",
        "images\/*",
        "oembed\/*",
        "lists\/*"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    }
}