-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext_summarizer.trex
More file actions
25 lines (25 loc) · 1.01 KB
/
Copy pathtext_summarizer.trex
File metadata and controls
25 lines (25 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<manifest manifest-version="0.1" xmlns="http://www.tableau.com/xml/extension_manifest">
<dashboard-extension id="com.example.text-summarizer" extension-version="0.1.0">
<default-locale>en_US</default-locale>
<name resource-id="name"/>
<description resource-id="description"/>
<author name="Suryansh" email="suryansh.singh@piton-tech.de" organization="Piton Tech" website="https://www.piton-tech.de"/>
<min-api-version>1.0</min-api-version>
<source-location>
<url>https://suryanshdev2023.github.io/tableau_text_summarizer_extension/text_summarizer.html</url>
</source-location>
<icon></icon>
<permissions>
<permission>full data</permission>
</permissions>
</dashboard-extension>
<resources>
<resource id="name">
<text locale="en_US">Text Summarizer</text>
</resource>
<resource id="description">
<text locale="en_US">AI-powered text summarization for Tableau</text>
</resource>
</resources>
</manifest>