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…

什么是Relative Links To Absolute?

Relative Links To Absolute是由Dmitry Rodevich开发的Chrome扩展程序,该扩展的主要功能是“Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Relative Links To Absolute扩展crx文件

下载Relative Links To Absolute扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Relative Links To Absolute Relative Links To Absolute
ID lafddlfgimneffahboncpgapcnnjckjm
官方URL https://chromewebstore.google.com/detail/relative-links-to-absolut/lafddlfgimneffahboncpgapcnnjckjm
简介 Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…
文件大小 12.5 KB
安装次数 24
当前版本 1.0
更新时间 2021-12-30
上架时间 2021-09-07
开发者 Dmitry Rodevich
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://raw.githubusercontent.com/rodewitsch/ChromeExtensionsPrivacy/main/privacy.html
支持的语言 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"
    ]
}