9GAG Lite

Change 9gag as you want to work like it should

9GAG Lite क्या है?

9GAG Lite geiszla द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change 9gag as you want to work like it should"।

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

screenshot
screenshot

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

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