Send to MyInfo (legacy)

Sends text selection or current web page URL to Myinfo

Co to jest Send to MyInfo (legacy)?

Send to MyInfo (legacy) to rozszerzenie Chrome opracowane przez https://www.myinfoapp.com, a jego główną funkcją jest „Sends text selection or current web page URL to Myinfo”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Send to MyInfo (legacy)

Pobierz pliki rozszerzeń Send to MyInfo (legacy) 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 is the legacy MyInfo addon. For MyInfo 7 and newer, please install MyInfo Web Clipper instead.

Send to MyInfo sends current web page selection (text and graphics) to MyInfo.

MyInfo is a personal information manager for Windows, which helps you collect, organize, edit, store, and find personal information.

Requires MyInfo 6.35 or higher.                    

Podstawowe informacje o rozszerzeniu

Nazwa Send to MyInfo (legacy) Send to MyInfo (legacy)
ID fkcplcakolplbgpmchocnnnmjihgckdp
Oficjalny URL https://chromewebstore.google.com/detail/send-to-myinfo-legacy/fkcplcakolplbgpmchocnnnmjihgckdp
Opis Sends text selection or current web page URL to Myinfo
Rozmiar pliku 11.55 KB
Liczba instalacji 454
Aktualna Wersja 2.4.0
Ostatnia Aktualizacja 2021-10-15
Data Publikacji 2017-10-28
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper https://www.myinfoapp.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.myinfoapp.com/addons/browser/send-to-myinfo-from-google-chrome
Adres URL Strony Pomocy https://www.myinfoapp.com/addons/browser/send-to-myinfo-from-google-chrome
Adres URL Strony Polityki Prywatności https://www.myinfoapp.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.4.0",
    "default_locale": "en",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "extension_installed.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "nativeMessaging"
    ],
    "browser_action": {
        "default_title": "Send to MyInfo",
        "default_icon": "images\/icon-16x16.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}