9GAG Lite

Change 9gag as you want to work like it should

9GAG Lite란 무엇입니까?

9GAG Lite은(는) geiszla에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change 9gag as you want to work like it should"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

9GAG Lite 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        New features
- Zoom into profile pictures when user hovers over them
- Download images/GIFs/videos
- Show length of videos and GIFs
- Prevent autoplaying GIFs/videos

All features can be turned on and off with a simple switch when clicking on the extension icon.

Features:
- Choose between light and dark theme
- Hide ads
- Simplify website layout, remove clutter
- Limit posts on hot and trending page by number of points
- Choose which type of posts to see (images/GIFs/videos)
- Download images/GIFs/videos
- Show length of videos and GIFs
- Prevent autoplaying GIFs/videos
- Zoom into profile pictures when user hovers over them

Planned features:
- Prevent post preload to save data
- Show OP's name if she/he commented on the post
- Copy link button under posts
- Bigger posts
- Normalize post order
- Don't show already seen posts
- Prevent loading hot posts in trending (by point limit)
- Multiple page layout options (e.g. hide only social links, hide only sidebar, etc.)
- Favorites
- Censor emojis ;)

More ideas are welcome.                    

확장 프로그램 기본 정보

이름 9GAG Lite 9GAG Lite
ID namifldkgnlkiocmnhhpbppcoimcpobm
공식 URL https://chromewebstore.google.com/detail/9gag-lite/namifldkgnlkiocmnhhpbppcoimcpobm
설명 Change 9gag as you want to work like it should
파일 크기 26.04 KB
설치 횟수 35
현재 버전 1.1.3
최근 업데이트 2019-01-10
출시 날짜 2019-01-10
평점 5.00/5 총 2 개의 평점
개발자 geiszla
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/geiszla/9gag-lite
도움말 페이지 URL https://github.com/geiszla/9gag-lite/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "9GAG Lite",
    "version": "1.1.3",
    "description": "Change 9gag as you want to work like it should",
    "minimum_chrome_version": "53",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "downloads"
    ],
    "options_page": "options\/options.html",
    "browser_action": {
        "default_title": "9Gag Lite Options",
        "default_popup": "options\/options_popup.html"
    },
    "background": {
        "scripts": [
            "global.js",
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "global.js",
                "scripts\/setup.js"
            ],
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.9gag.com\/*"
            ]
        },
        {
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.9gag.com\/*"
            ]
        },
        {
            "js": [
                "scripts\/fixup.js"
            ],
            "matches": [
                "*:\/\/*.9gag.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "styles\/*"
    ]
}