title | date | categories | |
---|---|---|---|
GitHubDev.Js |
2023-11-23 |
|
how to add bookmarklet in chrome
export default { icon: '', name: { en: "Open repo in github.dev", vi: "Open repo in github.dev", }, description: { en: "Open current repo in github.dev", vi: "Open current repo in page github.dev to view code", }, whiteList: ["https://github.com/*"], onClick: function() { window.open("https://github.dev" + location.pathname); }, };