| title | GitHubDev.Js | |
|---|---|---|
| date | 2023-11-23 | |
| categories |
|
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); }, };