This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> | |
| <name>Open File Browser</name> | |
| <id>org.inkscape.effect.open_filebrowser</id> | |
| <effect> | |
| <object-type>all</object-type> | |
| <effects-menu> | |
| <submenu name="Document"/> | |
| </effects-menu> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function selectiveCalendarSync() { | |
| const startTime = Date.now(); | |
| // Number of days to include in the sync: | |
| const NUM_DAYS = 14; | |
| // Lower case exclude trigger strings to keep matching events from being synced: | |
| const EXCLUDE = ["focus time", "home", "bob ooo", "alice pto"]; | |
| // Universal name for synced events? Make it empty to use original event name: | |
| const NEW_NAME = ""; | |
| // Also sync whole day events without start and end time?: | |
| const FULL_DAY_EVENTS = false; |
OlderNewer