SIR Image Renamer

SIR is an Image Renamer. Provides meaningful image names when saving on Pixiv, Deviantart, Artstation, etc.

Co je SIR Image Renamer?

SIR Image Renamer je rozšíření Chrome vyvinuté Brawlence, a jeho hlavní funkcí je „SIR is an Image Renamer. Provides meaningful image names when saving on Pixiv, Deviantart, Artstation, etc.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření SIR Image Renamer

Stáhněte si soubory rozšíření SIR Image Renamer 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í

                        Pʀᴏᴍᴏᴛes Tᴡɪᴛᴛᴇʀ & Iɴsᴛᴀɢʀᴀᴍ ɪᴍᴀɢᴇs ᴛᴏ ᴏʀɪɢɪɴᴀʟ ǫᴜᴀʟɪᴛʏ!

SIR fetches data from popular image galleries, suggesting informative file names through the usual 'save file' dialog.

The naming template is customizable; by default it's set to:
{handle}@{OR} {ID} {name} {caption} {tags}.ext,
{handle} represents author's nickname (usually it's a part of the gallery link),
{OR} is site abbrevation as follows below,
{name} is author's human-readable name (often it's not the same as handle!),
{caption} is the image title as specified by the creator,
{tags} is a string of tags, separated by spaces (in-tag spaces are replaced by underscores).

Currently supports 12 popular galleries (check the github!)

More info: https://github.com/Brawlence/SIR#description
Report a bug: https://github.com/Brawlence/SIR/Issues                    

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

Název SIR Image Renamer SIR Image Renamer
ID gmdcgijknjodfhggamchhhejamncbgmc
Oficiální URL https://chromewebstore.google.com/detail/sir-image-renamer/gmdcgijknjodfhggamchhhejamncbgmc
Popis SIR is an Image Renamer. Provides meaningful image names when saving on Pixiv, Deviantart, Artstation, etc.
Velikost souboru 53.39 KB
Počet instalací 42
Aktuální Verze 1.8.0
Poslední Aktualizace 2023-11-02
Datum Vydání 2020-06-24
Hodnocení 3.00/5 Celkem 1 Hodnocení
Vývojář Brawlence
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Brawlence/SIR
URL Stránky Nápovědy https://github.com/Brawlence/SIR#inner-workings
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SIR Image Renamer",
    "short_name": "SIR",
    "description": "SIR is an Image Renamer.\nProvides meaningful image names when saving on Pixiv, Deviantart, Artstation, etc.",
    "icons": {
        "128": "SIR_128x128.png",
        "48": "SIR_48x48.png",
        "16": "SIR_16x16.png"
    },
    "version": "1.8.0",
    "manifest_version": 2,
    "permissions": [
        "downloads",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.deviantart.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/DA.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.artstation.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/AS.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.pixiv.net\/*",
                "*:\/\/*.pximg.net\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/PX.js",
                "Enhancers\/PX.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tumblr.com\/post\/*",
                "*:\/\/*.tumblr.com\/image\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/TU.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.twimg.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/TW.js",
                "Enhancers\/TW.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.hentai-foundry.com\/pictures*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/HF.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/drawfriends.booru.org\/*s=view*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/DF.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/vidyart.booru.org\/*s=view*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/VA.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/danbooru.donmai.us\/posts\/*",
                "*:\/\/cdn.donmai.us\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/DB.js",
                "Enhancers\/DB.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/medicalwhiskey.com\/?p=*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/MW.js",
                "Content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.instagram.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "Parsers\/IG.js",
                "Enhancers\/IG.js",
                "Content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "Background.js"
        ]
    },
    "commands": {
        "SIR_it": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Shows the tags string generated from the image page"
        },
        "Decorate": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "Decorates discovered tags on the image page"
        }
    }
}