View 3rd party photobucket images

Scans a webpage for photobucket images and the updates the src to show the image.

Co to jest View 3rd party photobucket images?

View 3rd party photobucket images to rozszerzenie Chrome opracowane przez amnlincoln, a jego główną funkcją jest „Scans a webpage for photobucket images and the updates the src to show the image.”.

Pobierz plik CRX rozszerzenia View 3rd party photobucket images

Pobierz pliki rozszerzeń View 3rd party photobucket images 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

                        Scans a webpage for photobucket images and then updates the src to show the image. Runs on all webpages                    

Podstawowe informacje o rozszerzeniu

Nazwa View 3rd party photobucket images View 3rd party photobucket images
ID ehoeoelfbhokhcialnddlcnapkocnael
Oficjalny URL https://chrome.google.com/webstore/detail/view-3rd-party-photobucke/ehoeoelfbhokhcialnddlcnapkocnael
Opis Scans a webpage for photobucket images and the updates the src to show the image.
Rozmiar pliku 34.22 KB
Liczba instalacji 93
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2017-10-03
Data Publikacji 2017-10-03
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper amnlincoln
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "View 3rd party photobucket images",
    "description": "Scans a webpage for photobucket images and the updates the src to show the image.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": {
            "32": "images\/icon.png"
        },
        "default_title": "Photobucket Fixer"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "permissions": []
}