LoungeDestroyer

Improves the experience of CS:GO Lounge and DOTA2 Lounge

LoungeDestroyer क्या है?

LoungeDestroyer LoungeDestroyer developers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improves the experience of CS:GO Lounge and DOTA2 Lounge"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में LoungeDestroyer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        LoungeDestroyer improves the experience of browsing DOTA2 Lounge & CS:GO Lounge. Originally this was an user-script for Tampermoney and Greasemonkey, but we have decided to move on to stand-alone Chrome extension.

Features:
- Auto-bet/-return/-accept trade offers
- Automatically loads market prices for all items
- Redirect from wait.html to the page you intended to visit
- Steam market prices for items when you hover on an item
- Auto-bump your trade offers
- Market listing and market search links added to item pop-up
- Automatic inventory loading on error
- Cached inventories for times when API is not loading
- Notifications for new comments on trades and offers
- Notifications for new matches
- Notifications for when your returns are about to expire
- Extended trade descriptions
- Trade preview on all trades
- Statistics about your betting inventory
- Custom theme support (currently only CleanLounge by /u/farblood )
- Multiple currency support, converts site item values to your currency
- Item grouping in inventories, allowing you to separate items from betting and inventory statistics calculation
- Displays extra match info on home page and in My Bets page (best of x, match time, bet match indicator)
- Changes match start times according to your timezone
- Trade filters to mark/hide trades based on your selected keywords
- Remove/change trade offer annoying beep sound
- Trade filters
- Match filters
- Extended trade information

The code is open-source and is available on GitHub.
http://github.com/ncla/LoungeDestroyer

You can discuss about LoungeDestroyer on our subreddit.
http://reddit.com/r/loungedestroyer

Join our Steam group
http://steamcommunity.com/groups/loungedestroyer                    

एक्सटेंशन की मूल जानकारी

नाम LoungeDestroyer LoungeDestroyer
ID ghahcnmfjfckcedfajbhekgknjdplfcl
आधिकारिक URL https://chromewebstore.google.com/detail/loungedestroyer/ghahcnmfjfckcedfajbhekgknjdplfcl
विवरण Improves the experience of CS:GO Lounge and DOTA2 Lounge
फ़ाइल का आकार 1.28 MB
स्थापना संख्या 43,824
वर्तमान संस्करण 0.9.5.7
अंतिम अपडेट 2018-08-25
प्रकाशन तिथि 2018-08-25
रेटिंग 4.57/5 कुल 1916 रेटिंग्स
डेवलपर LoungeDestroyer developers
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ncla/LoungeDestroyer
सहायता पृष्ठ URL http://reddit.com/r/loungedestroyer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LoungeDestroyer",
    "version": "0.9.5.7",
    "manifest_version": 2,
    "description": "Improves the experience of CS:GO Lounge and DOTA2 Lounge",
    "homepage_url": "http:\/\/github.com\/ncla\/LoungeDestroyer",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "background": {
        "scripts": [
            "node_modules\/jquery\/dist\/jquery.min.js",
            "lib\/js\/css-lib.js",
            "app\/helpers.js",
            "app\/user.js",
            "app\/match.js",
            "app\/bg\/background.js",
            "app\/bg\/bet.js",
            "app\/bg\/themes.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/32x32.png",
        "default_title": "LoungeDestroyer"
    },
    "options_page": "settings\/index.html",
    "permissions": [
        "notifications",
        "*:\/\/csgolounge.com\/*",
        "*:\/\/steamcommunity.com\/*",
        "*:\/\/dota2lounge.com\/*",
        "*:\/\/api.ncla.me\/*",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "alarms",
        "unlimitedStorage",
        "cookies"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/csgolounge.com\/*",
                "*:\/\/dota2lounge.com\/*"
            ],
            "js": [
                "node_modules\/jquery\/dist\/jquery.min.js",
                "node_modules\/dompurify\/src\/purify.js",
                "lib\/js\/jquery-ui.min.js",
                "node_modules\/moment\/min\/moment.min.js",
                "node_modules\/moment-timezone\/builds\/moment-timezone-with-data.min.js",
                "node_modules\/jstz\/dist\/jstz.min.js",
                "lib\/js\/ajaxq.js",
                "app\/helpers.js",
                "app\/user.js",
                "app\/match.js",
                "app\/items.js",
                "app\/inventory.js",
                "app\/bet.js",
                "app\/queue.js",
                "app\/trades.js",
                "app\/inject.js"
            ],
            "css": [
                "app\/css\/inject.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "icons\/32x32.png"
    ]
}