OneLink Image Replace Tool

Replaces images on target websites

Was ist OneLink Image Replace Tool?

OneLink Image Replace Tool ist eine Chrome-Erweiterung, die von tptextensions entwickelt wurde, und ihr Hauptmerkmal ist "Replaces images on target websites".

Erweiterungsscreenshots

screenshot
screenshot

OneLink Image Replace Tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie OneLink Image Replace Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name OneLink Image Replace Tool OneLink Image Replace Tool
ID ffmhoodnfkhnhhmafcmakckhmgahbfgf
Offizielle URL https://chromewebstore.google.com/detail/onelink-image-replace-too/ffmhoodnfkhnhhmafcmakckhmgahbfgf
Beschreibung Replaces images on target websites
Dateigröße 1.75 MB
Installationsanzahl 20
Aktuelle Version 1.13
Letztes Update 2020-09-25
Veröffentlichungsdatum 2020-09-09
Entwickler tptextensions
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.transperfect.com/about/data-privacy-client-tech-user
Unterstützte Sprachen 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"
    }
}