This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name X Article to Markdown | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0.0 | |
| // @description Copy X (Twitter) long articles as Markdown format | |
| // @author geekjourney | |
| // @match https://x.com/*/status/* | |
| // @match https://x.com/*/article/* | |
| // @icon https://x.com/favicon.ico | |
| // @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name 微信公众号HTML手动清理与插入剪贴板内容 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.3 | |
| // @description 在微信公众号页面添加按钮,手动清除或插入剪贴板内容到指定路径 | |
| // @author Xsir | |
| // @match *://mp.weixin.qq.com/cgi-bin/appmsg* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="app"> | |
| {{formattedText()}} | |
| </div> | |
| <script> | |
| var app = new Vue({ | |
| el: "#app", | |
| data: { | |
| text: 'Devin/Wade' | |
| }, | |
| computed: function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="app"> | |
| <p v-if="show">2018 Merry Christmas</p> | |
| <a :href="url"> poros blog</a> | |
| <p>Today: {{ date | formateDate}}<p> | |
| <button @click="handleClose">Click</button> | |
| </div> | |
| <script> | |
| var app = mew Vue({ | |
| el: '#app', | |
| data: { |