I use these filters with ArtBlock but they will also work with Adblock Plus.
The idea is to use Adblock's default filter lists to block all ads, but to whitelist certain assets necessary for the proper functioning of interactive sites.
before_release: | |
- bundle exec rake db:migrate |
gem 'sinatra' | |
gem 'hyperresource' |
I use these filters with ArtBlock but they will also work with Adblock Plus.
The idea is to use Adblock's default filter lists to block all ads, but to whitelist certain assets necessary for the proper functioning of interactive sites.
span.inner { | |
display: none; | |
} |
.x-status_container.purple, | |
.x-status_container.purple > .x-text, | |
.x-status_container.purple > .x-time | |
{ | |
padding: 0 !important; | |
margin: 0 !important; | |
border: none !important; | |
display: none !important; | |
} |
source "https://rubygems.org" | |
gem "sinatra" |
chrome.browserAction.onClicked.addListener(function(tab) { | |
chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"}) | |
}); |
chrome.browserAction.onClicked.addListener(function(tab) { | |
chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"}) | |
}); |
#!/bin/sh | |
defaults write -g KeyRepeat -int 0 # <- 0 ms | |
defaults write -g InitialKeyRepeat -int 10 # <- 100 ms | |
defaults write -g ApplePressAndHoldEnabled -bool false |
#!/bin/sh | |
# Check if this is a branch checkout | |
if [ "${3}" -eq "1" ] ; then | |
git submodule update --init | |
fi |