Created
June 20, 2025 21:50
-
-
Save abeforgit/8ad37029e79f4c22e1da8d7ec26ed00a to your computer and use it in GitHub Desktop.
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 cprdfa | |
// @namespace https://redpencil.io/ | |
// @version 2025-06-20 | |
// @description copy rdfa from editor | |
// @author abeforgit | |
// @match http://localhost:4200/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=undefined.localhost | |
// @run-at context-menu | |
// @grant GM_setClipboard | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const html = __PC.htmlContent; | |
GM_setClipboard(html, "text/html", () => console.log("Clipboard set!")); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment