Itch Dashboard Filter

Adds a search + filters to the Itch.io dashboard page.

Itch Dashboard Filter क्या है?

Itch Dashboard Filter Michael Savage-Benoist द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a search + filters to the Itch.io dashboard page."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension will add a search field and filter buttons to the top of the Itch.io dashboard page. The filters include:
- Published pages
- Restricted pages
- Draft pages
- Mine (pages authored by you)
- Collab (pages where you are a co-author)

You can also sort by alphabetical (default) or 'date created' ascending/descending.

(Dev note: 'date created' actually sorts by the ID of the game, to stay data-light. This should correspond to when it was made chronologically.)                    

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

नाम Itch Dashboard Filter Itch Dashboard Filter
ID pkdhmmjchdaljncegcnldbaacicpjfen
आधिकारिक URL https://chromewebstore.google.com/detail/itch-dashboard-filter/pkdhmmjchdaljncegcnldbaacicpjfen
विवरण Adds a search + filters to the Itch.io dashboard page.
फ़ाइल का आकार 52.11 KB
स्थापना संख्या 130
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2022-01-31
प्रकाशन तिथि 2022-01-24
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Michael Savage-Benoist
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Itch Dashboard Filter",
    "description": "Adds a search + filters to the Itch.io dashboard page.",
    "version": "0.0.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/itch.io\/dashboard*"
            ]
        }
    ]
}