Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js hk

{ "manifest_version": 2, "name": "Whatever you want to call the plugin", "description": "A brief description of what the plugin does. I prefer the GNU philosophy of do one thing well", "version": "2.0", "content_scripts": [ { "matches": [ "*://*/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] }
Comment

js hk

(function(jQuery) {
    jQuery('.sortable-image img, .sortable-image').css({width:'auto',height:'auto'})
    jQuery('.sortable-image img').each( function(e,elem) {
        var fixedImg = jQuery(this).attr('src').replace('s.png','.png');
        jQuery(this).attr( 'src', fixedImg );
    });
})(jQuery);
Comment

PREVIOUS NEXT
Code Example
Javascript :: create multidimensional array with foreach javascript 
Javascript :: migration mongoose nestjs 
Javascript :: JSX expression with JS template literals 
Javascript :: js array map and update tat array value 
Javascript :: js The equivalent of destructuring arrays and objects 
Javascript :: javascript ping ip address 
Javascript :: how to create a tag object in jQuery 
Javascript :: currentContract.transferFrom is not a function 
Javascript :: react-native-modal big border 
Javascript :: Convert form data to JavaScript object with jQuery 
Javascript :: destructuring function nested parameters 
Javascript :: JavaScript combining rows of multiple datasets 
Javascript :: scroll to bottom of page javascript 
Javascript :: asynchronous file reading 
Javascript :: Will Yield A "Function" 
Javascript :: Update array with new object JavaScript without using index 
Javascript :: Include Id In Backbone 
Javascript :: Html() is a JQuery Function 
Javascript :: onSeek video getting paused 
Javascript :: Get Error 
Javascript :: dropdown list trigger change with value jquery 
Javascript :: regex mobile 
Javascript :: cocos creator localstorage 
Javascript :: does expo av support mp3 
Javascript :: events in node js 
Javascript :: updating a random variable in a function 
Javascript :: sentry configure scope 
Javascript :: add function 
Javascript :: nodejs mysql set query timeout 
Javascript :: ajax each 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =