Relative Links To Absolute

Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…

Hvad er Relative Links To Absolute?

Relative Links To Absolute er en Chrome-udvidelse udviklet af Dmitry Rodevich, og dens hovedfunktion er "Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Relative Links To Absolute-udvidelses-CRX-fil

Download Relative Links To Absolute-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one.
If you are developing a web application and the files are stored on a remote server, the extension allows you to specify the full path from where you want to take the images without any additional actions.                    

Grundlæggende oplysninger om udvidelsen

Navn Relative Links To Absolute Relative Links To Absolute
ID lafddlfgimneffahboncpgapcnnjckjm
Officiel URL https://chromewebstore.google.com/detail/relative-links-to-absolut/lafddlfgimneffahboncpgapcnnjckjm
Beskrivelse Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…
Filstørrelse 12.5 KB
Antal Installationer 24
Nuværende Version 1.0
Senest Opdateret 2021-12-30
Udgivelsesdato 2021-09-07
Udvikler Dmitry Rodevich
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://raw.githubusercontent.com/rodewitsch/ChromeExtensionsPrivacy/main/privacy.html
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relative Links To Absolute",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "\/options\/options.html",
    "permissions": [
        "storage"
    ]
}