Social Media Profile Saver

Allows you to save the important details from a profile page as an HTML document

Co to jest Social Media Profile Saver?

Social Media Profile Saver to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Allows you to save the important details from a profile page as an HTML document”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Social Media Profile Saver

Pobierz pliki rozszerzeń Social Media Profile Saver 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

                        Allows you to save the important details from a profile page as an HTML document                    

Podstawowe informacje o rozszerzeniu

Nazwa Social Media Profile Saver Social Media Profile Saver
ID okfbgbjbkfkndojokpjpfmhgadedmamb
Oficjalny URL https://chromewebstore.google.com/detail/social-media-profile-save/okfbgbjbkfkndojokpjpfmhgadedmamb
Opis Allows you to save the important details from a profile page as an HTML document
Rozmiar pliku 13.71 KB
Liczba instalacji 93
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2017-02-17
Data Publikacji 2017-02-17
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Media Profile Saver",
    "version": "1.1.1",
    "manifest_version": 2,
    "icons": {
        "128": "save-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "profile_content.js",
                "profile_content_old.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.linkedin.com\/recruiter\/profile\/*",
                "https:\/\/*.linkedin.com\/recruiter\/profile\/*"
            ],
            "js": [
                "recruiter_profile_content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "push_state.js"
            ],
            "run_at": "document_start"
        }
    ]
}