{"id":13465535,"url":"https://github.com/tjx666/vscode-adobe-extension-devtools","last_synced_at":"2025-05-07T13:46:49.147Z","repository":{"id":37901798,"uuid":"439833457","full_name":"tjx666/vscode-adobe-extension-devtools","owner":"tjx666","description":"provide some useful tools for adobe extension development","archived":false,"fork":false,"pushed_at":"2022-11-16T19:26:23.000Z","size":13316,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-06T11:17:45.236Z","etag":null,"topics":["adobe","aftereffects","cep","photoshop","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=YuTengjing.adobe-extension-devtools","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tjx666.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-19T10:25:10.000Z","updated_at":"2024-02-19T18:40:00.000Z","dependencies_parsed_at":"2023-01-20T23:16:57.211Z","dependency_job_id":null,"html_url":"https://github.com/tjx666/vscode-adobe-extension-devtools","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tjx666%2Fvscode-adobe-extension-devtools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tjx666%2Fvscode-adobe-extension-devtools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tjx666%2Fvscode-adobe-extension-devtools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tjx666%2Fvscode-adobe-extension-devtools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tjx666","download_url":"https://codeload.github.com/tjx666/vscode-adobe-extension-devtools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252890205,"owners_count":21820342,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adobe","aftereffects","cep","photoshop","vscode-extension"],"created_at":"2024-07-31T15:00:31.665Z","updated_at":"2025-05-07T13:46:49.128Z","avatar_url":"https://github.com/tjx666.png","language":"JavaScript","funding_links":[],"categories":["My extensions"],"sub_categories":[],"readme":"# Adobe Extension Development Tools\n\n\u003e **Note**: Only for MacOS now!\n\n## ExtendScript Features\n\n### JSX module definition jump\n\n![JSX module definition jump](https://github.com/tjx666/adobe-extension-devtools/blob/master/assets/screenshot/jump_to_definition.gif?raw=true)\n\nYou need to set fie associations to tell vscode treat `.jsx` as javascript:\n\n```json\n{\n    \"files.associations\": {\n            \"**/jsx_folder/**/*.jsx\": \"javascript\"\n    }\n}\n```\n\n## AE Features\n\n### AE Composition Tree View\n\nYou need to manually refresh the outline to get latest info about active composition.\n\n![AE Composition Tree View](https://github.com/tjx666/adobe-extension-devtools/blob/master/assets/screenshot/ae_composition_outline.gif?raw=true)\n\n## PS Features\n\n### View Active Layer Descriptor Info\n\nYou can open an editor to view the current active layer descriptor info with command `View Active Layer Descriptor Info`:\n\n![Layer Info](https://github.com/tjx666/adobe-extension-devtools/blob/master/assets/screenshot/layer_info.gif?raw=true)\n\nSimilar commands:\n\n- `View Active Document Descriptor Info`\n- `View Application Descriptor Info`\n\n### View Active Layer Descriptor Info in Diff Editor\n\nWhen you develop ps extension, you may often need to compare the layer descriptor info before and after an operation. Call command `View Active Layer Descriptor Info in Diff Editor` will open a diff editor, and fill the before editor with latest active layer descriptor info. Call twice will fill the latest info to after editor.\n\n![Layer Info Diff Editor](https://github.com/tjx666/adobe-extension-devtools/blob/master/assets/screenshot/layer_info_diff.gif?raw=true)\n\nSimilar commands:\n\n- `View Active Document Descriptor Info in Diff Editor`\n- `View Application Descriptor Info in Diff Editor`\n\n### Action Manager ids transform between charID, stringID, typeID\n\nSelect the id you want to transform and call corresponding command, support following commands:\n\n- `convert char id to type id`\n- `convert char id to string id`\n- `convert string id to type id`\n- `convert string id to char id`\n- `convert type id to char id`\n- `convert type id to string id`\n\n![id transform](https://github.com/tjx666/adobe-extension-devtools/blob/master/assets/screenshot/id_transform.gif?raw=true)\n\n### View System Info\n\n![View Photoshop System Info](https://github.com/tjx666/adobe-extension-devtools/blob/master/assets/screenshot/view_system_info.gif?raw=true)\n\n### View Active Document XMP Metadata Raw Data XML\n\n![View Active Document XMP Metadata Raw Data XML](https://github.com/tjx666/vscode-adobe-extension-devtools/blob/master/assets/screenshot/xmp_metadata_xml.gif?raw=true)\n\n### View Active Document XMP Metadata\n\nYou need to set which namespaces you want to check:\n\n```json\n{\n   \"adobeExtensionDevtools.ps.includeXMPNamespaces\": [\"hammer.ps-export\"]\n}\n```\n\n![View Active Document XMP Metadata Raw Data XML](https://github.com/tjx666/adobe-extension-devtools/blob/master/assets/screenshot/xmp_metadata.gif?raw=true)\n\n## TODOs\n\n- [x] JSX module definition jump\n- [x] AE Composition Tree View\n- [x] Snippets, recommend: [My personal snippets](https://marketplace.visualstudio.com/items?itemName=YuTengjing.ytj-snippets)\n- [x] PS view layer descriptor info, support diff mode\n- [x] PS view document descriptor info, support diff mode\n- [x] PS view application descriptor info, support diff mode\n- [x] PS id transform between charID, StringID, typeID\n- [x] PS view system info\n- [x] PS view XMP Metadata\n- [ ] Windows Support\n\n## Related\n\n- [VSCode Scripting Listener](https://github.com/tjx666/scripting-listener)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftjx666%2Fvscode-adobe-extension-devtools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftjx666%2Fvscode-adobe-extension-devtools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftjx666%2Fvscode-adobe-extension-devtools/lists"}