Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Chrome Extension
Search
周祺
February 28, 2011
Programming
380
1
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Chrome Extension
Chrome插件开发
周祺
February 28, 2011
More Decks by 周祺
See All by 周祺
Mobile Web的性能优化与测试
zhouqicf
7
360
Web App
zhouqicf
1
190
Web App开发
zhouqicf
4
280
f2e @ 2012
zhouqicf
6
190
Photoshop影像修饰艺术
zhouqicf
4
380
前端和视觉间的故事
zhouqicf
1
170
CSS模块化
zhouqicf
2
240
Other Decks in Programming
See All in Programming
脅威をエンジニアリングの糧にして――現場編 / Turning Threats into Engineering Fuel — Field Edition
nrslib
0
300
LLMによるContent Moderationの本番運用の裏側と品質担保への挑戦
suikabar
3
770
セキュリティの専門家じゃなくてもできる。「セキュリティ意識」をアップデートして サプライチェーン攻撃への耐性を高めよう。
tk3fftk
5
940
Oxcを導入して開発体験が向上した話
yug1224
4
340
「AIで開発し、AIを届ける」をEvalでつなぐ 〜AIネイティブに始めるプロダクト開発の実践〜 / Connecting "Develop with AI, deliver AI" with Eval
rkaga
4
5.4k
Datadog × OpenTelemetry 入門と実践のあいだ
kn_to_maxpno
1
180
AI時代のUIはどこへ行く?その2!
yusukebe
22
7.5k
TypeScript+Orvalで実現する型安全かつ堅牢でスケーラブルなマルチチャネル通知基盤 / TSKaigi Night talks ~after conference~
d0riven
0
360
気圧・高度・GPSを記録&可視化するアプリ「Koudo」を作った話
hjmkth
1
320
Dataformのリポジトリを立ち上げるときにまずやること / dataform-day0-2026
snhryt
0
180
Vite+ Unified Toolchain for the Web
naokihaba
0
340
The NotImplementedError Problem in Ruby
koic
1
940
Featured
See All Featured
エンジニアに許された特別な時間の終わり
watany
107
250k
Dominate Local Search Results - an insider guide to GBP, reviews, and Local SEO
greggifford
PRO
0
200
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
38
2.9k
Large-scale JavaScript Application Architecture
addyosmani
515
110k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
28
3.5k
Rails Girls Zürich Keynote
gr2m
96
14k
Optimizing for Happiness
mojombo
378
71k
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
330
Pawsitive SEO: Lessons from My Dog (and Many Mistakes) on Thriving as a Consultant in the Age of AI
davidcarrasco
0
170
Groundhog Day: Seeking Process in Gaming for Health
codingconduct
0
220
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
1.4k
How STYLIGHT went responsive
nonsquared
100
6.2k
Transcript
Chr me Extension 口碑F2E-由校 2011-02-28
f2e !== Future.f2e HTML + CSS + JAVASCRIPT http://www.adobe.com/cn/devnet/air/ajax/
f2e !== Future.f2e
“你很幸运,因为Chrome插件开发是如此简单,你不需要明白什么是 ActiveX,不需要知道什么叫COM,嗯,让他们一边凉快去吧,这里只有 HTML & Javascript,这里是互联网的世界!” 前端是多么幸运,因为Chrome插件开发对于我们来说是如此简单,这里 只有HTML & CSS &
Javascript,这里是我们的世界! -- via youxiao 互联网前端的世界
Enjoy ! CSS3 ! HTML5 ! audio
! application cache ! canvas ! geolocation ! local storage ! Notifications ! session storage ! video ! web database ! Jquery、YUI、ExtJs……
Chrome APIs ! Bookmarks ! ContextMenus ! I18n ! Omnibox
! History ! A8 ! …
Files
The manifest file { "name" : "Code Cola", //插件名称(i18n 下使用
”__MSG_key__”) "version" : "1.2.2", //插件版本(发布插件时读取该版本号,必须唯一) "default_locale“ : "en", //默认语言 "description" : "Gets information from Google.", //插件描述 //图标 "icons" : { "128": "128.png", "48": "48.png", "32": "32.png", "24": "24.png" }, "background_page": "bg.html", // background_page "options_page": "options.html", //配置⻚页 //插件权限(更改设置时,谷歌会对用户进行提醒) "permissions": ["tabs", "*://*/*"], //工具栏上的按钮图标 "browser_action": { "default_title": "code cola", "default_icon": "codecola.png", "default_popup": "popup.html" //popup⻚页面 } }
Extension UIs Background.html Content scripts Popup.html Execute Js
Background.html Manifest.json : { “background_page”: “bg.html” } //显示有几封新邮件 chrome.browserAction.setBadgeText(object details)
//默认为蓝色的icon,有新邮件时,更改成红色的icon chrome.browserAction.setIcon(object details) //mouseover时显示“有n封新邮件”的title chrome.browserAction.setTitle(object details)
Content scripts Manifest.json : { "content_scripts": [ { "matches": ["*://*/*"],
"css": ["codecola.css"], "js": ["codecola.js"] } ] }
Browser Actions – Popup Manifest.json : { "browser_action": [ {
"default_icon": ["codecola.png"], "default_title": ["codecola"], "default_popup": ["popup.html"] } ] }
Browser Actions – execute JS Background.html: //code chrome.browserAction.onClicked.addListener(function(tab){ chrome.tabs.executeScript(tab.id,{ code:"document.body.bgColor='red'
" }); }); //file chrome.browserAction.onClicked.addListener(function(tab) { chrome.tabs.executeScript(tab.id, {file: "codecola.js"}, function(){ chrome.tabs.insertCSS(id, { file: "codecola.css " }); }); });
Communication
Communication //listener ( background.html ) chrome.extension.onRequest.addListener(function(request, sender, sendResponse){ sendResponse({ "action":
localStorage["codecola_getLink_action"] }); }); // requester ( content Js ) chrome.extension.sendRequest("getUrls", function(response) { console.log(response.action); }); Ps: 在background.html里无法直接操作⻚页面的dom
Communication p 用“Content scripts”来操作DOM p “Content scripts”和“background.html”通过 “chrome.extension”,以事件的方式来进行交互
Options manifest.json: { "options_page": "options.html" } option.html: localStorage["codecola_getLink_action"] = action;
Internationalization (i18n) manifest.json: { "name": "__MSG_messagename__" } Content js: chrome.i18n.getMessage("messagename")
messages.json: { "name": { "message" : "code cola", "description": "xxx" } } http://code.google.com/chrome/extensions/i18n.html
Debug
Learn
Pack “.pem”文件即是该插件的“私有密钥”,第一次打包时生成该密钥
Install
Publish https://chrome.google.com/webstore/developer/update
Have a Try – Apps https://dl-web.dropbox.com/get/dev/Chrome/apps.crx?w=4ea0e4eb
Have a Try – Apps
Have a Try – switch work space 点击浏览器 工具栏图标 获取当前
Tab的ID 改变当前 Tab的Url https://dl-web.dropbox.com/get/dev/Chrome/switch%20work%20space.crx?w=544cade7&dl=1
Try – switch work space https://dl-web.dropbox.com/get/dev/Chrome/switch%20work%20space.crx?w=544cade7
Try – switch work space view-source:https://dl-web.dropbox.com/get/dev/Chrome/switch%20work%20space/background.html?w=8c8998f6
Have a Try – switch work space If KXT? update_rpc.php
Excute Js Code Update Url
Resource http://code.google.com/chrome/extensions/getstarted.html http://code.google.com/intl/zh-CN/chrome/webstore/docs/index.html
Q&A
Thanks.