- 将鼠标指向技能提示由英文改为中文
- 样式美化
- 修改字体为OpenSans
- 安装插件环境
tell application "Finder" | |
activate | |
if not (exists Finder window 1) then | |
open home | |
end if | |
end tell |
// ==UserScript== | |
// @name MetalMonkey Experiment | |
// @namespace http://amio.us/ | |
// @version 0.3 | |
// @description 测试 MetalMonkey 哎哟 | |
// @match http://developer.chrome.com/* | |
// @match https://gist.github.com/* | |
// @include http://www.google.com/intl/en/policies/faq/ | |
// @exclude http://developer.chrome.com/*/whats-new/ | |
// @grant GM_xmlhttpRequest |
-- Color Picker using DigitalColor Meter | |
-- Checks to see if System Preferences > Universal Access > Enable access for assistive devices is checked | |
-- This option is required for "System Events" to use the keystroke and key code commands. | |
-- If it is not checked, your password is required to make the change | |
tell application "DigitalColor Meter" to activate | |
tell application "System Events" | |
tell process "DigitalColor Meter" | |
set visible to false |
In today's cruel networked world, we're too often hampered behind (evil) company proxies that restricts how we can use the internet while at work, at a customers' place or even in some cases while at home or at friends'.
Not only do proxies restrict what you can do, what protocols that are accepted, what sites you can visit and what TCP ports that are let through, it also allows your company or friend to log and supervise you.
Note that even when you use HTTPS through the proxy, the server name is exposed so a logging proxy will see what HTTPS servers you connect to.
I'll show you some easy steps that help you circumvent the boundaries of most proxy setups, and that also will bring you more freedom and prevent peeking eyes to investigate your browsing habits!
/***** Fork me on Github *****/ | |
#fork-me-on-github { | |
opacity : 0.8; | |
background-color : #A00; | |
color : #FFF; | |
display : block; | |
position : fixed; | |
z-index : 10; | |
right : -6em; |
Gmail-Air-Skin's rebirth.
Install it from http://userstyles.org/styles/99260/
'use strict'; | |
angular.module('Utils', []) | |
/** | |
* Transform a date to 'xxx days ago' | |
*/ | |
.filter('ago', function () { | |
return function (input) { |