Dynalist Allstar

Open 2 docs side by side in https://Dynalist.io and work on them. More cool features on the way!

Was ist Dynalist Allstar?

Dynalist Allstar ist eine Chrome-Erweiterung, die von Gourav.io entwickelt wurde, und ihr Hauptmerkmal ist "Open 2 docs side by side in https://Dynalist.io and work on them. More cool features on the way!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Dynalist Allstar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dynalist Allstar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Please note that this is an unofficial Dynalist chrome extension made by me to further improve productivity 😇.


Right click on a document in File pane and select "Open in Side" option to open 2nd document in same window. 
You can work on both the documents at same time and Dynalist will save the changes. 
To disable/enable this feature go to Dynalist Menu -> Allstar Settings option.

Changelog v0.2.0:
- Resizable width of both docs.
- Re-open side doc on page reload if previously opened.                    

Grundlegende Informationen zur Erweiterung

Name Dynalist Allstar Dynalist Allstar
ID kljpaieidlmmnigjigfbmfbhabolpkbl
Offizielle URL https://chromewebstore.google.com/detail/dynalist-allstar/kljpaieidlmmnigjigfbmfbhabolpkbl
Beschreibung Open 2 docs side by side in https://Dynalist.io and work on them. More cool features on the way!
Dateigröße 25.16 KB
Installationsanzahl 582
Aktuelle Version 0.2.1
Letztes Update 2018-03-11
Veröffentlichungsdatum 2018-03-11
Bewertung 3.86/5 Insgesamt 14 Bewertungen
Entwickler Gourav.io
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dynalist Allstar",
    "version": "0.2.1",
    "description": "Open 2 docs side by side in https:\/\/Dynalist.io and work on them. More cool features on the way!",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "author": "jerrygoyal",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.dynalist.io\/*"
            ],
            "js": [
                "js\/page.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        },
        "default_title": "Dynalist Allstar",
        "default_popup": "popup.html"
    },
    "short_name": "Dynalist Allstar",
    "web_accessible_resources": [
        "js\/inject.min.js"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'  'unsafe-eval'; object-src 'self'"
}