DropFlowy
Load custom CSS to WorkFlowy from a shared Dropbox link.
DropFlowy란 무엇입니까?
DropFlowy은(는) rawbytz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Load custom CSS to WorkFlowy from a shared Dropbox link."입니다.
확장 프로그램 스크린샷
DropFlowy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
v0.3.3 Toolbar icon/keyboard shortcut now load style as well as toggle (if style fails to load at tab creation) To enter your shared Dropbox css file link: • Right Click the toolbar icon & select "Options". • Enter your link and press Save • Reload existing WorkFlowy tabs after editing CSS or the link. • Click the toolbar icon (or define a keyboard shortcut) to toggle the stylesheet ON/OFF. NOTES: • Save your file in Dropbox with the .css file extension. • Dropbox links not required. • For links to work, they must serve the raw css/text with the proper content-type header. v0.3.2 Toggle style ON/OFF via toolbar click or keyboard shortcut. v0.3.1 Add stylesheets to WorkFlowy's beta and dev domains.
확장 프로그램 기본 정보
이름 | DropFlowy |
ID | djkbkkooilijfnobeedgikcbpnmhkbde |
공식 URL | https://chromewebstore.google.com/detail/dropflowy/djkbkkooilijfnobeedgikcbpnmhkbde |
설명 | Load custom CSS to WorkFlowy from a shared Dropbox link. |
파일 크기 | 15.13 KB |
설치 횟수 | 83 |
현재 버전 | 0.3.4 |
최근 업데이트 | 2019-09-03 |
출시 날짜 | 2019-09-03 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | rawbytz |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DropFlowy", "version": "0.3.4", "description": "Load custom CSS to WorkFlowy from a shared Dropbox link.", "icons": { "128": "css_128.png" }, "browser_action": { "default_icon": "css_128.png", "default_title": "Toggle Style" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "https:\/\/workflowy.com\/*", "https:\/\/beta.workflowy.com\/*", "https:\/\/dev.workflowy.com\/*" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/workflowy.com\/*", "https:\/\/beta.workflowy.com\/*", "https:\/\/dev.workflowy.com\/*" ], "exclude_matches": [ "https:\/\/workflowy.com\/s\/*", "https:\/\/*.workflowy.com\/s\/*" ], "all_frames": true } ], "options_ui": { "chrome_style": true, "page": "options.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+S" } } }, "manifest_version": 2 } |