cmux-picker 0.1.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.
Binary file
Binary file
@@ -0,0 +1,35 @@
1
+ {
2
+ "manifest_version": 3,
3
+ "name": "cmux picker",
4
+ "version": "0.1.0",
5
+ "description": "Pick an element on any page and send it, with a prompt, to a coding agent running in cmux.",
6
+ "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyLERP7Brwm6+D7qdAixnl684GYFsBxsrUEVXSJY95yjHz5TYt/ou2avxrwVIEl7DCKGj+GjVAcwSf7YXp4l6vH71x2BCIKISBvmF2mJAOFc09balSfDEyE2070Vf2vCsm3Y6pGAoJI8fEPx5D5hzQXg+sxmlehM9y/3GIDiDAJWdZU8ZmhtjNdcG4jzZajVymnQDGy/kbDl7Oc0dTglkdk2L2ANzaXjhtSoJ6SeXYsHBsy7yVZRzpyIsUWEPnsNWf46UfLtCtK+PZD7rlWYUgVl5zcODceakotaZGkNNADq31wwasjQlguYrUs22CPZ35tD6peR0t1qZk4T2j0IKJQIDAQAB",
7
+ "minimum_chrome_version": "117",
8
+ "permissions": ["activeTab", "scripting", "nativeMessaging"],
9
+ "background": {
10
+ "service_worker": "background.js",
11
+ "type": "module"
12
+ },
13
+ "action": {
14
+ "default_title": "cmux picker: pick an element (Ctrl+B)",
15
+ "default_icon": {
16
+ "16": "icons/icon-16.png",
17
+ "48": "icons/icon-48.png",
18
+ "128": "icons/icon-128.png"
19
+ }
20
+ },
21
+ "icons": {
22
+ "16": "icons/icon-16.png",
23
+ "48": "icons/icon-48.png",
24
+ "128": "icons/icon-128.png"
25
+ },
26
+ "commands": {
27
+ "pick": {
28
+ "suggested_key": {
29
+ "default": "Ctrl+B",
30
+ "mac": "MacCtrl+B"
31
+ },
32
+ "description": "Pick an element to send to a cmux agent"
33
+ }
34
+ }
35
+ }