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…

Co to jest Relative Links To Absolute?

Relative Links To Absolute to rozszerzenie Chrome opracowane przez Dmitry Rodevich, a jego główną funkcją jest „Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Relative Links To Absolute

Pobierz pliki rozszerzeń Relative Links To Absolute w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Relative Links To Absolute Relative Links To Absolute
ID lafddlfgimneffahboncpgapcnnjckjm
Oficjalny URL https://chromewebstore.google.com/detail/relative-links-to-absolut/lafddlfgimneffahboncpgapcnnjckjm
Opis Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…
Rozmiar pliku 12.5 KB
Liczba instalacji 24
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-12-30
Data Publikacji 2021-09-07
Deweloper Dmitry Rodevich
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://raw.githubusercontent.com/rodewitsch/ChromeExtensionsPrivacy/main/privacy.html
Obsługiwane Języki 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"
    ]
}