chrome 可以裝 tampermonkey 這個套件
用這個很簡單的 script 就能跳過確認 18 歲的畫面了。
// ==UserScript==
// @name ptt18
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.ptt.cc/ask/over18*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
/* jshint -W097 */
'use strict';
// Your code here...
$(document).ready(function() {
document.getElementsByName("yes")[0].click();
});
--
用這個很簡單的 script 就能跳過確認 18 歲的畫面了。
// ==UserScript==
// @name ptt18
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.ptt.cc/ask/over18*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
/* jshint -W097 */
'use strict';
// Your code here...
$(document).ready(function() {
document.getElementsByName("yes")[0].click();
});
--
All Comments