Easy Note Taking for LinkedIn

This extension allows you to take notes on LinkedIn profiles. These notes are there only for you.

Co to jest Easy Note Taking for LinkedIn?

Easy Note Taking for LinkedIn to rozszerzenie Chrome opracowane przez https://igodev.com, a jego główną funkcją jest „This extension allows you to take notes on LinkedIn profiles. These notes are there only for you.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Easy Note Taking for LinkedIn

Pobierz pliki rozszerzeń Easy Note Taking for LinkedIn 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

                        This extension allows you to take notes on LinkedIn profiles. These notes are there only for you. 
You can also access these notes when you are messaging to someone on LinkedIn. 
All notes are securely stored in Google Chrome Sync Storage. 
This Extension does not transmit data to any 3rd party. 🔒                    

Podstawowe informacje o rozszerzeniu

Nazwa Easy Note Taking for LinkedIn Easy Note Taking for LinkedIn
ID acmbfggokaabfndehodmoekhccfnphel
Oficjalny URL https://chromewebstore.google.com/detail/easy-note-taking-for-link/acmbfggokaabfndehodmoekhccfnphel
Opis This extension allows you to take notes on LinkedIn profiles. These notes are there only for you.
Rozmiar pliku 1.51 MB
Liczba instalacji 196
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2021-10-25
Data Publikacji 2021-01-18
Ocena 4.71/5 Łącznie 7 Oceny
Deweloper https://igodev.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://igodev.com/private-notes-for-linkedin/
Adres URL Strony Pomocy https://igodev.com/private-notes-for-linkedin/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Note Taking for LinkedIn",
    "version": "0.0.3",
    "description": "This extension allows you to take notes on LinkedIn profiles. These notes are there only for you.",
    "permissions": [
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/linkedin.com\/*",
        "storage"
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "dist\/*.js",
        "dist\/*.map.js"
    ],
    "background": {
        "scripts": [
            "dist\/bundle-background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/linkedin.com\/*"
            ],
            "js": [
                "dist\/bundle-notes.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    }
}