Last active
December 27, 2015 22:49
-
-
Save varvaruc/7402033 to your computer and use it in GitHub Desktop.
hello world chrome extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PNG | |
x26 | |
IHDR | |
x19 | |
x19x08x02 | |
ý2¡ | |
pHYs | |
x11x19 | |
x11x19x01 | |
x24 | |
x01ÃIDATxÑOoÚ0x24x06ðÄNx28'¤´¡x04x18x24ªÚ®S«nìx03l¨Û7Þx14&í^í4Uc»QVJ°ÄóÇ$Þ¡Òx04!x20õ½=òóm½¢°6 | |
Ó¬ÚVx29Jx18çãÌF£q¦¹Ë²,·Ûç¯Û/ÏÎNUçóy¿?¸úñ³ÛýÅØb¹)åäÁAëÝÅÛNçeÙqx20M&Óf³iT*Kz×ý§-x07x08áóãÃã£CQx167Ã(MÓ$~ðþ¢óâäHV®Y | |
Bûx21x03!DO?x24üNx18x20UUßÑ5Mõ<R,3Î!x11÷x127ïÙx01 | |
Zg KÆwcx08`ex27ïLøÏÍp·¼£ )x08¨x20(x01,¢EÞî( | |
W¾¶x288x23( | |
zͶí^Bx08eifi¯×ûüå+¥t£x20x04! ôº?ÀXi4lYx29gvyùíÃÇO©kæ÷ù0¦½:?%~@i8NÃ0Zïä÷ù0x24+%]ÿ~Õex21x22Ü>ÿYÝ'Ä{x21Kx08AݪÍ]ïx17V,u]ß-]¬x31mx21Ãx08) | |
üàiRx20Åzx26E1 | |
ÃB°Qj¶gì¹Ç9x127l6,UÅ´h[dx28Çqx209Îl«üx07izÆÅ^x31x25 | |
IEND®B` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 2, | |
"name": "Hello World", | |
"description":"First Chrome Extension", | |
"version":"1.0", | |
"browser_action": { | |
"default_icon":"icon.png", | |
"default_popup":"popup.html" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 { | |
color:blue; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Hello World</title> | |
<script src="jquery-1.10.2.min.js"></script> | |
<script src="popup.js"></script> | |
<link rel="stylesheet" href="popup.css" media="all"> | |
</head> | |
<body> | |
<h1 id="greeting">Hi!</h1> | |
<input id="name" type="text" /> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
$('#name').keyup(function(){ | |
$('#greeting').text('Hi, ' + $('#name').val()+ ' ! '); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment