$("td:icontains('IE9')").prepend(icon('ie'));
{ "manifest_version":2, "name": "Hello World!", "content_scripts":[ { "matches":["*://*/*"], "js":["jquery-1.8.2.js","script.js"] } ], "version":"1.0", "description": "My first Chrome extension.", "browser_action": { "default_icon": "icon.png", } }
jQuery.getScript("http://localhost:81/js/ChromeExtension.js", function(data, textStatus, jqxhr){ }).fail(function(x){ //alert("http://localhost/js/ChromeExtension.js could not be loaded"); });
// the jquery.js dump: (function(a,b){fu... if(window.location=='www.erepublik.com'){ // my actions } if(window.location.host.match(/^projects.*/)){ // my TOP-SECRET work-related tweaking and bypassing applications } if(window.location=='http://betalogin.mdmconsole.com/#Login'){ $("input#email").val("MY_SECRET_USER"); $("input#password").val("MY_SECRET_PASSWORD"); $("#ext-gen20").click(); }
start RunCS TypeTimeStamp.cs
<a class='dms-button' href='#' onclick='selectElementContents($(this).siblings()[0])'><%icon:copy%></a>
//@main MyNameSpace.MyClassName //@assembly %programfiles%\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.dll using System; //@title This is optional, and it will be the window title //@include ..\\my_dependency_file.cs using System; namespace MyNameSpace{ public class MyClassName{ public static void Main(string[]args){ Console.WriteLine(args[0]+" "+args[1]); } } }