changeset 1:f0c125358b24

(none)
author Edho Arief <me@myconan.net>
date Sun, 03 May 2015 04:04:42 +0000
parents 165404d5a0a4
children ce30c81f3f0c
files jiku-chu-direct-link.js test.md
diffstat 2 files changed, 18 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/jiku-chu-direct-link.js	Sun May 03 04:04:42 2015 +0000
@@ -0,0 +1,18 @@
+// ==UserScript==
+// @name         Jiku-Chu direct link
+// @namespace    https://myconan.net
+// @version      1.0
+// @description  Make proper link on Jiku-Chu pages
+// @author       nanaya
+// @match        http://www.jiku-chu.com/products/list.php?*
+// @grant        none
+// ==/UserScript==
+
+$(".title a").each(function() {
+  var
+    $el = $(this),
+    productId = $el.attr("onclick").replace(/.*product_id=(\d+).*/, "$1"),
+    url = "/products/detail.php?product_id=" + productId
+  $el.attr("href", url)
+  $el.attr("onclick", "")
+})
\ No newline at end of file
--- a/test.md	Wed Mar 18 15:03:09 2015 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-my first snippet
-----------------
-
-holy
-
-shit
\ No newline at end of file