Dynalist Allstar

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

Dynalist Allstar란 무엇입니까?

Dynalist Allstar은(는) Gourav.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open 2 docs side by side in https://Dynalist.io and work on them. More cool features on the way!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Dynalist Allstar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Dynalist Allstar Dynalist Allstar
ID kljpaieidlmmnigjigfbmfbhabolpkbl
공식 URL https://chromewebstore.google.com/detail/dynalist-allstar/kljpaieidlmmnigjigfbmfbhabolpkbl
설명 Open 2 docs side by side in https://Dynalist.io and work on them. More cool features on the way!
파일 크기 25.16 KB
설치 횟수 582
현재 버전 0.2.1
최근 업데이트 2018-03-11
출시 날짜 2018-03-11
평점 3.86/5 총 14 개의 평점
개발자 Gourav.io
이메일 [email protected]
결제 유형 free
지원되는 언어 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'"
}