albert's blog
Showing posts with label
Chrome Extension
.
Show all posts
Showing posts with label
Chrome Extension
.
Show all posts
2016/12/08
[Chrome Extension] Background Pages
›
A common need for extensions is to have a single long-running script to manage some task or state. Background pages to the rescue. Assume ...
2016/12/06
[Chrome Extension] Use the chrome.storage API to store, retrieve, and track changes to user data
›
Requirement I would like to store user data for my chrome extension, I can use either storage.sync or storage.local. When using storage.s...
2016/12/05
[Chrome Extension] Create a simple chrome extenstion with AngularJS 1.X
›
The steps are as bellows: 1. Download AngularJS 1 from https://angularjs.org/ 2. Download Bootstrap from https://getbootstrap.com/ 3. ...
2016/12/04
[Chrome Extension] Create a simple chrome extenstion to search picture in Flicker
›
Steps are as bellows: 1. Create manifest.json 1 2 3 4 5 6 7 8 9 10 11 12 { "manifest_version" : 2 , "nam...
2016/11/09
[Chrome Extension] How to adjust the width of popup window ?
›
Problem In chrome extension, we will create a html file which will be rendered inside the popup window that's created in response to a ...
2016/11/08
[Chrome Extension] Hello World Example
›
1. Create a manifest.json In this manifest, I will declare a browser action, and the activeTab permission 1 2 3 4 5 6 7 8 9 10...
›
Home
View web version