DropFlowy
Load custom CSS to WorkFlowy from a shared Dropbox link.
DropFlowyคืออะไร?
DropFlowy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rawbytz และคุณลักษณะหลักของมันคือ "Load custom CSS to WorkFlowy from a shared Dropbox link."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DropFlowy
ดาวน์โหลดไฟล์ส่วนขยาย DropFlowy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 } |