Yarn and Pins

Create mindmaps for different sources of information.

Co to jest Yarn and Pins?

Yarn and Pins to rozszerzenie Chrome opracowane przez clarksonchris025, a jego główną funkcją jest „Create mindmaps for different sources of information.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Yarn and Pins

Pobierz pliki rozszerzeń Yarn and Pins 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

                        Yarn and pins (YnP) is a chrome extension that allows one to make mind maps while researching a topic online. It uses a tree graph to which one can add and modify branches that represent subjects/concepts within the topic of interest. URL links are attachable to each node and one can navigate to the link where information was found. Hence this app acts as a customisable visual library for research articles. See https://www.youtube.com/watch?v=TbCv5-S_JH0&ab_channel=PaperAudio for a tutorial.

The code is inspired by  https://bl.ocks.org/adamfeuer/042bfa0dde0059e2b288
which was written by Adam Feuer.
Some portions of the code are under MIT License.

Instructions:
1. Download  the app. Refresh all open tabs before using the app. Click in the top right corner of your chrome browser where the app will appear. Once clicked a window will open with a single node with "Parent-1" beside it.
2. If the app is slow/ nothing appears in the window. You can resize it to make things faster- e.g. type "20" into the width and height text boxes and click "resize"- this will make the app faster.
3. You can navigate inside the window by clicking and dragging to go vertically/horizontally. You can also zoom in and out by scrolling.
4. If you click on the "Parent-1" node the window will focus it at the center of the window and a text box with the info pertaining to it will appear.
5. If you right click on the node a menu will appear with a set of options. NOTE: if it takes a while for the menu to appear- click and drag to toggle and the menu will then appear (or change to a smaller screen size as shown above).
6. The options in the menu allows one to do different things with a node, the most basic of which are:
             -Edit: Used to change the title/ text in the node so that the node label/ text that appears when clicked will be different. Editing is done in a form that appears in the "Edit" option is selected. When finished editing click the button at the bottom of the form to implement changes.
             -Create Child Node: when this is clicked the selected node will have a new child node connected to it- the content of which can be modified in a form that appears. The name/ text of the new child node will default to "empty" unless one has highlighted text on a website in the chrome browser. This can be changed in the form and then when finished editing click the button at the bottom of the form to implement changes.
             -Delete Node: to delete a node NOTE: Never delete the original "Parent-1" / root node.
             -Go to link: open page on link attached to a given node.
7. To download a made graph. Click the "Download" button. The downloaded file will be named according to the root node e.g. "Parent-1.YnP.json".
8. To re-upload a previously downloaded graph type the full path to that file into the "path to file" textbox at the top of the app and then click "upload". One can also upload an old "json" file to be the child of a plotted node (by using the option "upload branch" in the right click menu). Similarly one can download a branch of a tree (with the option "upload branch" in the right click menu).
9. One can search the tree by typing a search term into the "path to file" textbox and clicking the search button. The most similar sentence to that search will be returned centered on. A next and back button can be used to go between nodes of decreasing similarity to the search.                    

Podstawowe informacje o rozszerzeniu

Nazwa Yarn and Pins Yarn and Pins
ID iagncaicjoknacilohchfdljhciaofll
Oficjalny URL https://chromewebstore.google.com/detail/yarn-and-pins/iagncaicjoknacilohchfdljhciaofll
Opis Create mindmaps for different sources of information.
Rozmiar pliku 1.02 MB
Liczba instalacji 118
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2022-10-15
Data Publikacji 2020-12-01
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper clarksonchris025
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": "Yarn and Pins",
    "version": "1.2",
    "description": "Create mindmaps for different sources of information.",
    "browser_action": {
        "default_icon": "rsz_screenshot_2020-11-28_at_143442.png",
        "default_popup": "adamfeuer\/index.html",
        "default_title": "Navigation Visualisation"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "adamfeuer\/jquery-3.1.0.min.js",
                "adamfeuer\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "adamfeuer\/d3.v3.min.js",
            "adamfeuer\/dndTree.js",
            "adamfeuer\/d3-context-menu.js",
            "adamfeuer\/underscore-min.js",
            "adamfeuer\/jquery.js",
            "adamfeuer\/fastclick.js",
            "adamfeuer\/foundation.min.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "",
        "activeTab",
        "downloads"
    ]
}