DropFlowy
Load custom CSS to WorkFlowy from a shared Dropbox link.
DropFlowy क्या है?
DropFlowy rawbytz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Load custom CSS to WorkFlowy from a shared Dropbox link."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में DropFlowy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |