-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
design #3
Comments
טוב ח׳ברה חושבת על כיוון לטיים ליין בעקרון אני שהאידיטור יהיה כמה שיותר נקי מהסחות ויהיה פשוט לתפעול מחכה לתגובות? לילה טוב |
If I understand it correctly we're looking at the bar graph at the bottom of the page and the text boxes on the top left are just an index for us, right? There are many more which I'm sure you're familiar with some other examples, but try to consider using existing design patterns and extending them to meet your unique needs rather that completely reinventing the wheel. @polinekes @eranaltay @goldido87 @yelmam Let me know if this is helpful and where you're at on other aspects of the development. @yuvadm feel free to add if you see more pointers at this point. |
אוקי הבנתי את הכיוון אתה חושב שעדיף יצור אייקונים/סמלים מזוהיים לכל event ולהשתמש בשכבות יותר מוכרות למשתמש |
@goldido87 @yelmam @eranaltay what do you guys think of this design? |
This is a sample of how commands are stacked on the extension's popup window.
|
@goldido87 you can use the devtools.panels API to integrate with the devtools window and add your extension there. It might not be the best place for it, but it will give you a better experience than the current location. https://developer.chrome.com/extensions/devtools_panels Alternatively, just build an HTML element with everything your extension needs to display on the screen, inject it to each page, and position it with something like: div.easyguide {
position: fixed;
bottom: 0;
width: 100%;
} See a working example at http://jsfiddle.net/44Q3U/ @mushon do you know of a better way of splitting the screen like they need? |
A sidebar panel is apparently not something supported in Chrome's extension API (it is supported in Firefox). There's some discussion about it here: https://code.google.com/p/chromium/issues/detail?id=319130 Dev tools might be the way to go, as there is a certain deviness to this extension. It would however direct you at a more techi audience and a more techi use of the tool. You could however still stick with the popup window or some other more elegant solution for the whole thing. |
I think i'll go with the approach of the sidebar panel. |
@goldido87 as a rough prototype, it's perfect! does it still have all the functionality? i.e. record starts a new recording, stop ends it and places it in the list for replay? |
Yes, recording is currently done by pressing the ALT + R keys and stopping by ALT + S. Stopping adds the recording in the list. |
@goldido87 fair enough, that should be the next main effort. |
No description provided.
The text was updated successfully, but these errors were encountered: