Dynalist Companion Clipper

Clip and capture to your Dynalist.

Co to jest Dynalist Companion Clipper?

Dynalist Companion Clipper to rozszerzenie Chrome opracowane przez Dynalist Inc., a jego główną funkcją jest „Clip and capture to your Dynalist.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Dynalist Companion Clipper

Pobierz pliki rozszerzeń Dynalist Companion Clipper 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

                        Dynalist Companion Clipper clips the current page URL and selected text to your Dynalist inbox location.

Instructions:

(1) To use this extension, you need to have a Dynalist account. If you don't have one, sign up for one here: https://dynalist.io/signup

(2) Set an inbox location in Dynalist. Here's how: https://help.dynalist.io/article/119-set-an-inbox-location

(3) Log into Dynalist on the browser.

(4) Use the extension icon to capture the current page, or use the right click menu to clip current page or selected text.


Advanced usage:

(1) When the capture popup is open, you can hit Ctrl+Enter to capture;

(2) Customize the format of your captured text in options.                    

Podstawowe informacje o rozszerzeniu

Nazwa Dynalist Companion Clipper Dynalist Companion Clipper
ID ilcnkabiejjaijmenfmfobnkplflaglb
Oficjalny URL https://chromewebstore.google.com/detail/dynalist-companion-clippe/ilcnkabiejjaijmenfmfobnkplflaglb
Opis Clip and capture to your Dynalist.
Rozmiar pliku 187 KB
Liczba instalacji 7,201
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2018-10-03
Data Publikacji 2018-10-03
Ocena 4.48/5 Łącznie 23 Oceny
Deweloper Dynalist Inc.
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://dynalist.io/
Adres URL Strony Polityki Prywatności https://dynalist.io/privacy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dynalist Companion Clipper",
    "short_name": "DynaClipper",
    "description": "Clip and capture to your Dynalist.",
    "version": "0.3",
    "icons": {
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_icon": "image\/icon48.png",
        "default_title": "Clip this page to Dynalist",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "*:\/\/*.dynalist.io\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}