A Chrome Extension that lets you inject JS and CSS code to any website,
- Inject code from Context Menu.
- Auto Inject code when site loads.
- Redirect sites to another page (full sites or part of url).
- Backup and Restore your snippets.
Wildcards are the simplest way to specify include and exclude patterns. When you create a wildcard pattern there is just one special character, the asterisk *. An asterisk in your pattern will match zero or more characters and you can have more than one star in your pattern. Some examples:
- http://example.com/* matches http://example.com/, http://example.com/foo, http://example.com/bar and all other urls that start with http://example.com/.
- http://*.example.com matches all subdomains of example.com, like http://www.example.com, http://mail.example.com.
- http*://example.com matches both http://example.com and https://example.com.
- http://example.com/index.asp* matches http://example.com/index.asp, http://example.com/index.asp?a=b&c=d.
$1, $2, $3 in the redirect urls will match the text that the stars matched. Examples:
- http://example.com/* matches http://example.com/foobar, $1 is foobar.
- http://.example.com/ matches http://www.example.com/foobar, $1 is www, $2 is foobar.
Make a code run on all sitesEnable/Disable a snippet- Grouping of Rules