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…

O que é Relative Links To Absolute?

Relative Links To Absolute é uma extensão do Chrome desenvolvida por Dmitry Rodevich, e sua principal característica é "Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Relative Links To Absolute

Baixe arquivos de extensão Relative Links To Absolute no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Relative Links To Absolute Relative Links To Absolute
ID lafddlfgimneffahboncpgapcnnjckjm
URL Oficial https://chromewebstore.google.com/detail/relative-links-to-absolut/lafddlfgimneffahboncpgapcnnjckjm
Descrição Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…
Tamanho do Arquivo 12.5 KB
Contagem de Instalações 24
Versão Atual 1.0
Última Atualização 2021-12-30
Data de Publicação 2021-09-07
Desenvolvedor Dmitry Rodevich
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://raw.githubusercontent.com/rodewitsch/ChromeExtensionsPrivacy/main/privacy.html
Idiomas Suportados 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"
    ]
}