Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 695 Bytes

githubdev-js.md

File metadata and controls

9 lines (8 loc) · 695 Bytes
title date categories
GitHubDev.Js
2023-11-23
useful-script-en

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); }, };