Artstation Plus

Adding new features to Artstation

Co je Artstation Plus?

Artstation Plus je rozšíření Chrome vyvinuté https://demiart.ru, a jeho hlavní funkcí je „Adding new features to Artstation“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Artstation Plus

Stáhněte si soubory rozšíření Artstation Plus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        — New Ratio parameter has been added to the preview list, which displays the ratio of likes to views. Each preview now shows the number of views and likes.
— Dropdown list has been added to the «Manage Portfolio» page for your Artstation artworks. This dropdown list allows you to sort your portfolio by date, views, likes, and ratios.
— «Download all images» button on each user profiles.
— Add to preview info about the place in the trends.
— Legacy Preview design — disable slow animation of title on previews. You can switch to modern design in the extension settings.

Github: https://github.com/demiurge-ash/artstation-plus                    

Základní Informace o Rozšíření

Název Artstation Plus Artstation Plus
ID ebdenohdcbolldkofcepdbjdibghkndc
Oficiální URL https://chromewebstore.google.com/detail/artstation-plus/ebdenohdcbolldkofcepdbjdibghkndc
Popis Adding new features to Artstation
Velikost souboru 32.84 KB
Počet instalací 115
Aktuální Verze 3.5.0
Poslední Aktualizace 2024-01-14
Datum Vydání 2023-05-23
Hodnocení 3.75/5 Celkem 4 Hodnocení
Vývojář https://demiart.ru
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/demiurge-ash/artstation-plus
URL Stránky Nápovědy https://github.com/demiurge-ash/artstation-plus/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Artstation Plus",
    "version": "3.5.0",
    "description": "Adding new features to Artstation",
    "manifest_version": 3,
    "icons": {
        "72": "icons\/icon-72.png",
        "128": "icons\/icon-128.png"
    },
    "options_ui": {
        "page": "ui\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "downloads",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.artstation.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/crosshairs.svg",
                "icons\/eye.svg",
                "icons\/thumbs-up.svg",
                "icons\/trend.svg",
                "icons\/download.svg",
                "css\/styles.css",
                "ui\/download.html",
                "ui\/download.js"
            ],
            "matches": [
                "*:\/\/*.artstation.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.artstation.com\/*"
            ],
            "js": [
                "js\/functions.js",
                "js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}