Skip to content

Instantly share code, notes, and snippets.

@suatatan
Created February 10, 2013 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suatatan/4749964 to your computer and use it in GitHub Desktop.
Save suatatan/4749964 to your computer and use it in GitHub Desktop.
İlk Chrome Extension uygulamamız. Açıklamalar için: http://blog.suatatan.com
{
"manifest_version": 2,
"name": "Suat Atan Extension",
"description": "İlk extensionum",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
}
<!doctype html>
<html>
<head>
<title>Merhaba ahiret popup</title>
<style>
body {
min-width: 357px;
overflow-x: hidden;
}
img {
margin: 5px;
border: 2px solid black;
vertical-align: middle;
width: 75px;
height: 75px;
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
<script src="popup.js"></script>
</head>
<body>
Merhaba ahiret
</body>
</html>
/*Simdilik bos*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment