Daily Archives: 28.05.2014
Как сделать свой chrome extension
`manifest.json` должен выглядеть примерно так: { «manifest_version»: 2, «name»: «Jira print extension», «description»: «This extension is to print tasks in Jira», «version»: «1.0», «background»: { «scripts»: [«background.js»] }, «permissions»: [ «tabs», «https://*/*», «http://*/*» ], «browser_action»: { «default_icon»: «icon.png», «default_popup»: «popup.html» }, «content_scripts»: [ { «matches»: [«http://*/*», «https://*/*»], «js»: [«libs/jquery.js», «content.js»] } ] } При этом: …
Анимация в css
С картинками и примерами. Understanding CSS Timing Functions http://www.smashingmagazine.com/2014/04/15/understanding-css-timing-functions/