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…

Vad är Relative Links To Absolute?

Relative Links To Absolute är en Chrome-tillägg utvecklad av Dmitry Rodevich, och dess huvudfunktion är "Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Relative Links To Absolute-förlängningens CRX-fil

Ladda ner Relative Links To Absolute-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Relative Links To Absolute Relative Links To Absolute
ID lafddlfgimneffahboncpgapcnnjckjm
Officiell webbadress https://chromewebstore.google.com/detail/relative-links-to-absolut/lafddlfgimneffahboncpgapcnnjckjm
Beskrivning Adds an additional address to relative paths to files (images). Converts a relative link to an absolute one. If you are developing…
Filstorlek 12.5 KB
Antal Installationer 24
Aktuell Version 1.0
Senast Uppdaterad 2021-12-30
Publiceringsdatum 2021-09-07
Utvecklare Dmitry Rodevich
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://raw.githubusercontent.com/rodewitsch/ChromeExtensionsPrivacy/main/privacy.html
Stödda Språk 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"
    ]
}