OneLink Image Replace Tool

Replaces images on target websites

Co to jest OneLink Image Replace Tool?

OneLink Image Replace Tool to rozszerzenie Chrome opracowane przez tptextensions, a jego główną funkcją jest „Replaces images on target websites”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia OneLink Image Replace Tool

Pobierz pliki rozszerzeń OneLink Image Replace Tool 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

                        Replaces images on localized websites

Easily replace any images on localized web pages.
Login with your Onelink account.
Navigate to the web pages that are part of your OneLink Projects.
Select any image that you want to replace and upload the corresponding translated image.                    

Podstawowe informacje o rozszerzeniu

Nazwa OneLink Image Replace Tool OneLink Image Replace Tool
ID ffmhoodnfkhnhhmafcmakckhmgahbfgf
Oficjalny URL https://chromewebstore.google.com/detail/onelink-image-replace-too/ffmhoodnfkhnhhmafcmakckhmgahbfgf
Opis Replaces images on target websites
Rozmiar pliku 1.75 MB
Liczba instalacji 20
Aktualna Wersja 1.13
Ostatnia Aktualizacja 2020-09-25
Data Publikacji 2020-09-09
Deweloper tptextensions
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.transperfect.com/about/data-privacy-client-tech-user
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OneLink Image Replace Tool",
    "manifest_version": 2,
    "version": "1.13",
    "description": "Replaces images on target websites",
    "content_scripts": [
        {
            "js": [
                ".\/BrowserAPI\/ChromeAPI.js",
                "jquery.min.js",
                "content.js",
                ".\/uikit\/js\/uikit.js",
                ".\/uikit\/js\/uikit-icons.js"
            ],
            "css": [
                ".\/styles\/custom.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "toggle-modal": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q"
            },
            "description": "Display image replace modal"
        }
    },
    "icons": {
        "16": "onelink-icon.png",
        "48": "onelink-icon.png",
        "128": "onelink-icon.png"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js",
            "authentication.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "identity"
    ],
    "web_accessible_resources": [
        "*.html"
    ],
    "browser_action": {
        "default_icon": "onelinklogo.png",
        "default_popup": "popup.html"
    }
}