├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Phantr4x 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # URL Schemes Store 2 | 3 | A store of URL schemes. 4 | 5 | ## Social Networking 6 | 7 | ### WeChat 8 | - Open: `weixin://` 9 | - Scan: `weixin://scanqrcode` 10 | 11 | ### QQ 12 | - Open:`mqq://` 13 | 14 | ### Weibo 15 | - Open: `weibo://` or `sinaweibo://` 16 | - Scan QR code: `weibo://qrcode` 17 | 18 | ### Jidian 19 | - Open: `jidian://` 20 | - Post: `jidian://post?text=TEXT` 21 | 22 | ### Tweetbot 23 | - Open: `tweetbot://` 24 | - Timeline: `tweetbot:///timeline` 25 | - Mentions: `tweetbot:///mentions` 26 | - Retweets: `tweetbot:///retweets` 27 | - Direct Messages: `tweetbot:///direct_messages` 28 | - Lists: `tweetbot:///lists` 29 | - Favorites: `tweetbot:///favorites` 30 | - Search: `tweetbot:///search[?query=&callback_url=]` 31 | - Status: `tweetbot:///status/?callback_url=` 32 | - User Profile: `tweetbot:///user_profile/?callback_url=` 33 | - Post: `tweetbot:///post[?text=&callback_url=&in_reply_to_status_id=]` 34 | - Follow: `tweetbot:///follow/` 35 | - Unfollow: `tweetbot:///unfollow/` 36 | - Favorite: `tweetbot:///favorite/` 37 | - Unfavorite: `tweetbot:///unfavorite/` 38 | - Retweet: `tweetbot:///retweet/` 39 | - List: `tweetbot:///list/?callback_url=` 40 | 41 | ### Instagram 42 | - Open: `instagram://` or `instagram://app` 43 | - Camera: `instagram://camera` 44 | - Media with this ID: `instagram://media?id=MEDIA_ID` 45 | - User with this username: `instagram://user?username=USERNAME` 46 | - Location feed for this location ID: `instagram://location?id=LOCATION_ID` 47 | - Tag feed for this tag: `instagram://tag?name=TAG` 48 | 49 | ## Media 50 | 51 | ### Netease Music 52 | - Open: `orpheus://` 53 | - Recognize music: `orpheuswidget://recognize` 54 | 55 | ## Lifestyle & Finance 56 | 57 | ### Alipay 58 | - Open: `alipay://` 59 | - Scan: `alipayqr://platformapi/startapp?saId=10000007` 60 | - Payment code: `alipayqr://platformapi/startapp?saId=20000056` 61 | - Lucky money: 62 | `alipay://platformapi/startapp?saId=88886666` 63 | - Create chat group: 64 | `alipay://platformapi/startapp?appId=20000254&actionType=createGroup` 65 | 66 | ## Utilities 67 | 68 | ### Price Tag 69 | - Open: `pricetag://` 70 | - History: `pricetag://history` 71 | - Favorites: `pricetag://favorites` 72 | - Check historical price: 73 | + URL: `pricetag://activity?url=STORE_URL` 74 | + ID: `pricetag://activity?id=STORE_ID` 75 | 76 | ### Surge 77 | - Open: `surge://` 78 | - Start with selected configuration: `surge://start[?autoclose=true]` 79 | - Stop current session: `surge://stop[?autoclose=true]` 80 | - Start or stop with selected configuration: `surge://toggle[?autoclose=true]` 81 | - Install a configuration from a URL: `surge:///install-config?url=URL` 82 | 83 | ### Shadowrocket 84 | - Open: `shadowrocket://` 85 | - Connect VPN: `shadowrocket://connect` 86 | - Disconnect VPN: `shadowrocket://disconnect` 87 | - Toggle VPN: `shadowrocket://toggle[?autoclose=yes]` 88 | 89 | ### Potatso 1 90 | - Open: `potatso://` 91 | - Start VPN: `potatso://on[?autoclose=true]` 92 | - Stop VPN: `potatso://off[?autoclose=true]` 93 | - Toggle VPN: `potatso://switch[?autoclose=true]` 94 | 95 | *Remark: Support `x-callback-url`* 96 | 97 | ### 1Password 98 | - Open: `onepassword://` 99 | - Search: `onepassword://search/KEYWORD` 100 | 101 | 102 | ### Moke 103 | - Open: `moke:///` 104 | - View Weibo: 105 | ``` 106 | moke:///status?mid=微博MID` 107 | moke:///status?id=微博ID 108 | moke:///link?url=微博正文页面链接 109 | ``` 110 | - View User: 111 | ``` 112 | moke:///user?id=用户ID 113 | moke:///user?screen_name=用户昵称 114 | moke:///user?domain=用户个性域名 115 | moke:///link?url=用户主页链接 116 | ``` 117 | - Search Weibo: 118 | `moke:///search/statuses?query=关键字` 119 | - Search User: 120 | `moke:///search/users?query=关键字` 121 | - Write Weibo: 122 | `moke://账号昵称或ID(缺省使用当前账号)/post?text=微博内容 [可选参数:image=pasteboard,附加一张剪贴板中的图片。]` 123 | --------------------------------------------------------------------------------