Page2LinkMD
by
coconuts18
2017-05-08 [2017/05/08 17:53:07]
Generates current active page to markdown link format. Makes guthub repo_top/issue/pr links to a formatted title
@@ -1,10 +1,7 @@
-/*
- * @title Page2LinkMD
- * @description Generates current active page to markdown link format. Makes guthub repo_top/issue/pr links to a formatted title
- * @include http://*
- * @license MIT License
- * @require
- */
+// ==ClosureCompiler==
+// @output_file_name default.js
+// @compilation_level SIMPLE_OPTIMIZATIONS
+// ==/ClosureCompiler==
(function(){
var githubRegexp = /^https?:\/\/github.com.*/g;
@@ -18,7 +15,7 @@
if (githubRegexp.test(url)){
if (githubRepoRegexp.test(url)) {
- title = url.replace(githubRepoRegexp, "$1/$2");
+ title = "Github " + url.replace(githubRepoRegexp, "$1/$2");
} else if (githubIssueRegexp.test(url)) {
title = "Issue#" + url.replace(githubIssueRegexp, "$3") + " " + document.evaluate(githubTitleXPath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
} else if (githubPullRegexp.test(url)) {
@@ -32,6 +29,5 @@
title = title.replace(/[\[\]]/g,"\\$&").replace(/\\$/, "");
-void(prompt("Press Ctrl/Cmd + v to copy markdown", "[" + title + "](" + url + ")"));
-
+return void(prompt("Press Ctrl/Cmd + v to copy markdown", "[" + title + "](" + url + ")"));
})()
// ==ClosureCompiler==
// @output_file_name default.js
// @compilation_level SIMPLE_OPTIMIZATIONS
// ==/ClosureCompiler==
(function(){
var githubRegexp = /^https?:\/\/github.com.*/g;
var githubRepoRegexp = /^https?:\/\/github.com\/([^\/]+)\/([^\/]+)\/?$/g;
var githubIssueRegexp = /^https?:\/\/github.com\/([^\/]+)\/([^\/]+)\/issues\/(\d+)/g;
var githubPullRegexp = /^https?:\/\/github.com\/([^\/]+)\/([^\/]+)\/pull\/(\d+)/g;
var githubTitleXPath = '//*[@id="partial-discussion-header"]/div[1]/h1/span[1]';
var url = location.href;
var title = "";
if (githubRegexp.test(url)){
if (githubRepoRegexp.test(url)) {
title = "Github " + url.replace(githubRepoRegexp, "$1/$2");
} else if (githubIssueRegexp.test(url)) {
title = "Issue#" + url.replace(githubIssueRegexp, "$3") + " " + document.evaluate(githubTitleXPath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
} else if (githubPullRegexp.test(url)) {
title = "PR#" + url.replace(githubPullRegexp, "$3") + " " + document.evaluate(githubTitleXPath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
} else {
title = document.title;
}
} else {
title = document.title;
}
title = title.replace(/[\[\]]/g,"\\$&").replace(/\\$/, "");
return void(prompt("Press Ctrl/Cmd + v to copy markdown", "[" + title + "](" + url + ")"));
})()
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。