Skip to content

Instantly share code, notes, and snippets.

@abeforgit
Created June 20, 2025 21:50
Show Gist options
  • Save abeforgit/8ad37029e79f4c22e1da8d7ec26ed00a to your computer and use it in GitHub Desktop.
Save abeforgit/8ad37029e79f4c22e1da8d7ec26ed00a to your computer and use it in GitHub Desktop.
// ==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