@staff0rd/assist 0.587.0 → 0.588.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/allowed.cli-reads +1 -0
- package/dist/allowed.cli-reads +1 -0
- package/dist/commands/criteriaExtension/criteria-extension/content.js +266 -0
- package/dist/commands/criteriaExtension/criteria-extension/manifest.json +13 -0
- package/dist/commands/sessions/web/bundle.js +1 -1
- package/dist/index.js +638 -586
- package/package.json +2 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": 3,
|
|
3
|
+
"name": "assist criteria outliner",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Adds an Outline criteria toggle to GitHub's issue editor, backed by assist's acceptance criteria outliner.",
|
|
6
|
+
"content_scripts": [
|
|
7
|
+
{
|
|
8
|
+
"matches": ["https://github.com/*"],
|
|
9
|
+
"js": ["content.js"],
|
|
10
|
+
"run_at": "document_idle"
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|