├── .gitignore ├── .sketchpacks └── settings.json ├── ContentSync_Sketch_8.6.4.dmg ├── README.md ├── SketchContentSync.sketchplugin └── Contents │ ├── Resources │ └── plugin_logo.png │ └── Sketch │ ├── frameworks │ ├── ContentSync.framework │ │ ├── ContentSync │ │ ├── Headers │ │ │ └── ContentSync.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── SAMKeychain.bundle │ │ │ │ └── en.lproj │ │ │ │ └── SAMKeychain.strings │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ContentSyncRealtime.framework │ │ ├── ContentSyncRealtime │ │ ├── Headers │ │ │ └── ContentSyncRealtime.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ ├── Assets.car │ │ │ ├── CSContentKeyInspectorSection.nib │ │ │ ├── CSContentKeyInspectorSection2.nib │ │ │ ├── CSContentKeyInspectorSectionImageLayer.nib │ │ │ ├── CSContentKeyInspectorSectionMultipleLayers.nib │ │ │ ├── CSContentKeyInspectorSectionOverride.nib │ │ │ ├── CSContentKeyInspectorSectionOverrides.nib │ │ │ ├── CSContentKeyInspectorSectionTextLayer.nib │ │ │ ├── CSContentKeyInspectorSectionTitle.nib │ │ │ ├── CSInspectorItemWrapper.nib │ │ │ ├── CSOnboardFinal.nib │ │ │ ├── CSOnboardLayerList.nib │ │ │ ├── CSOnboardLayerPane.nib │ │ │ ├── CSOnboardSelectProject.nib │ │ │ ├── CSOnboardVersions.nib │ │ │ ├── CSOnboardWelcome.nib │ │ │ ├── CSPopupAccount.nib │ │ │ ├── CSPopupFeedback.nib │ │ │ ├── CSPopupLogin.nib │ │ │ ├── CSPopupWindow.nib │ │ │ ├── CSPopupWindowContent.nib │ │ │ ├── CSTopbarPane.nib │ │ │ ├── CSTopbarPaneError.nib │ │ │ ├── CSTopbarPaneLoggedOut.nib │ │ │ ├── CSTopbarPaneTabProjectNewView.nib │ │ │ ├── CSTopbarPaneTabProjectView.nib │ │ │ ├── CSTopbarPaneTabSyncActionRunning.nib │ │ │ ├── CSTopbarPaneTabSyncView.nib │ │ │ ├── CSTopbarPaneTabVersionNewView.nib │ │ │ ├── CSTopbarPaneTabs.nib │ │ │ ├── CSTopbarPaneTitleBar.nib │ │ │ ├── CSUIMenuItemError.nib │ │ │ ├── CSUIMenuItemHeaderSearch.nib │ │ │ ├── CSUIMenuItemLoading.nib │ │ │ ├── CSVersionPopup.nib │ │ │ ├── CSWebViewGoogleLogin.js │ │ │ ├── ContentSyncRealtimeResources.bundle │ │ │ │ └── Contents │ │ │ │ │ └── Info.plist │ │ │ ├── GoogleService-Info.plist │ │ │ ├── Info.plist │ │ │ └── SAMKeychain.bundle │ │ │ │ └── en.lproj │ │ │ │ └── SAMKeychain.strings │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ContentSyncRealtimeResources.bundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── ContentSyncRealtimeResources │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── libPods-ContentSync.a │ └── libPods-ContentSyncRealtime.a │ ├── manifest.json │ └── plugin.js └── docs ├── ContentSync-6-Demo-Spreadsheet.gif ├── ContentSync-6-Demo.gif ├── cs_scripting.png ├── dmginstall.png ├── doc_screen.png ├── sketch-interface-highlighted.png └── sketchrunner.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/.gitignore -------------------------------------------------------------------------------- /.sketchpacks/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/.sketchpacks/settings.json -------------------------------------------------------------------------------- /ContentSync_Sketch_8.6.4.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/ContentSync_Sketch_8.6.4.dmg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/README.md -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Resources/plugin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Resources/plugin_logo.png -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/ContentSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/ContentSync -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Headers/ContentSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Headers/ContentSync.h -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Resources/Info.plist -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Resources/SAMKeychain.bundle/en.lproj/SAMKeychain.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/Resources/SAMKeychain.bundle/en.lproj/SAMKeychain.strings -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSync.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/ContentSyncRealtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/ContentSyncRealtime -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Headers/ContentSyncRealtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Headers/ContentSyncRealtime.h -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/Assets.car -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSection.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSection.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSection2.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSection2.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionImageLayer.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionImageLayer.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionMultipleLayers.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionMultipleLayers.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionOverride.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionOverride.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionOverrides.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionOverrides.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionTextLayer.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionTextLayer.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionTitle.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSContentKeyInspectorSectionTitle.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSInspectorItemWrapper.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSInspectorItemWrapper.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardFinal.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardFinal.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardLayerList.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardLayerList.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardLayerPane.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardLayerPane.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardSelectProject.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardSelectProject.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardVersions.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardVersions.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardWelcome.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSOnboardWelcome.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupAccount.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupAccount.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupFeedback.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupFeedback.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupLogin.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupLogin.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupWindow.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupWindowContent.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSPopupWindowContent.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPane.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPane.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneError.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneError.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneLoggedOut.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneLoggedOut.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabProjectNewView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabProjectNewView.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabProjectView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabProjectView.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabSyncActionRunning.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabSyncActionRunning.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabSyncView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabSyncView.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabVersionNewView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabVersionNewView.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabs.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTabs.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTitleBar.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSTopbarPaneTitleBar.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSUIMenuItemError.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSUIMenuItemError.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSUIMenuItemHeaderSearch.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSUIMenuItemHeaderSearch.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSUIMenuItemLoading.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSUIMenuItemLoading.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSVersionPopup.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSVersionPopup.nib -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSWebViewGoogleLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/CSWebViewGoogleLogin.js -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/ContentSyncRealtimeResources.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/ContentSyncRealtimeResources.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/GoogleService-Info.plist -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/Info.plist -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/SAMKeychain.bundle/en.lproj/SAMKeychain.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/Resources/SAMKeychain.bundle/en.lproj/SAMKeychain.strings -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtime.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtimeResources.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtimeResources.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtimeResources.bundle/Contents/MacOS/ContentSyncRealtimeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtimeResources.bundle/Contents/MacOS/ContentSyncRealtimeResources -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtimeResources.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/ContentSyncRealtimeResources.bundle/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/libPods-ContentSync.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/libPods-ContentSync.a -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/frameworks/libPods-ContentSyncRealtime.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/frameworks/libPods-ContentSyncRealtime.a -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /SketchContentSync.sketchplugin/Contents/Sketch/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/SketchContentSync.sketchplugin/Contents/Sketch/plugin.js -------------------------------------------------------------------------------- /docs/ContentSync-6-Demo-Spreadsheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/docs/ContentSync-6-Demo-Spreadsheet.gif -------------------------------------------------------------------------------- /docs/ContentSync-6-Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/docs/ContentSync-6-Demo.gif -------------------------------------------------------------------------------- /docs/cs_scripting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/docs/cs_scripting.png -------------------------------------------------------------------------------- /docs/dmginstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/docs/dmginstall.png -------------------------------------------------------------------------------- /docs/doc_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/docs/doc_screen.png -------------------------------------------------------------------------------- /docs/sketch-interface-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/docs/sketch-interface-highlighted.png -------------------------------------------------------------------------------- /docs/sketchrunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentsync/SketchContentSync/HEAD/docs/sketchrunner.png --------------------------------------------------------------------------------