{
// (必需)清单文件的版本,这个必须写,且必须是2
"manifest_version": 2,
// (必需)插件的名称
"name": "demo",
// (必需)插件的版本
"version": "1.0.0",
// 插件描述
"description": "简单的Chrome扩展demo",
// 图标,一般偷懒全部用一个尺寸的也没问题
"icons":
{
"16": "img/icon.png",
"48": "img/icon.png",
"128": "img/icon.png"
},
// 会一直常驻的后台JS或后台页面
"background":
{
// 2种指定方式,如果指定JS,那么会自动生成一个背景页
"page": "background.html"
//"scripts": ["js/background.js"]
},
// 浏览器右上角图标设置,browser_action、page_action、app必须三选一
"browser_action":
{
"default_icon": "img/icon.png",
// 图标悬停时的标题,可选
"default_title": "这是一个示例Chrome插件",
"default_popup": "popup.html"
},
// 当某些特定页面打开才显示的图标
/*"page_action":
{
"default_icon": "img/icon.png",
"default_title": "我是pageAction",
"default_popup": "popup.html"
},*/
// 需要直接注入页面的JS
"content_scripts":
[
{
//"matches": ["http://*/*", "https://*/*"],
// "<all_urls>" 表示匹配所有地址
"matches": ["<all_urls>"],
// 多个JS按顺序注入
"js": ["js/jquery-1.8.3.js", "js/content-script.js"],
// JS的注入可以随便一点,但是CSS的注意就要千万小心了,因为一不小心就可能影响全局样式
"css": ["css/custom.css"],
// 代码注入的时间,可选值: "document_start", "document_end", or "document_idle",最后一个表示页面空闲时,默认document_idle
"run_at": "document_start"
},
// 这里仅仅是为了演示content-script可以配置多个规则
{
"matches": ["*://*/*.png", "*://*/*.jpg", "*://*/*.gif", "*://*/*.bmp"],
"js": ["js/show-image-content-size.js"]
}
],
// 权限申请
"permissions":
[
"contextMenus", // 右键菜单
"tabs", // 标签
"notifications", // 通知
"webRequest", // web请求
"webRequestBlocking",
"storage", // 插件本地存储
"http://*/*", // 可以通过executeScript或者insertCSS访问的网站
"https://*/*" // 可以通过executeScript或者insertCSS访问的网站
],
// 普通页面能够直接访问的插件资源列表,如果不设置是无法直接访问的
"web_accessible_resources": ["js/inject.js"],
// 插件主页,这个很重要,不要浪费了这个免费广告位
"homepage_url": "https://www.baidu.com",
// 覆盖浏览器默认页面
"chrome_url_overrides":
{
// 覆盖浏览器默认的新标签页
"newtab": "newtab.html"
},
// Chrome40以前的插件配置页写法
"options_page": "options.html",
// Chrome40以后的插件配置页写法,如果2个都写,新版Chrome只认后面这一个
"options_ui":
{
"page": "options.html",
// 添加一些默认的样式,推荐使用
"chrome_style": true
},
// 向地址栏注册一个关键字以提供搜索建议,只能设置一个关键字
"omnibox": { "keyword" : "go" },
// 默认语言
"default_locale": "zh_CN",
// devtools页面入口,注意只能指向一个HTML文件,不能是JS文件
"devtools_page": "devtools.html"
}
1{
2 // (必需)清单文件的版本,这个必须写,且必须是2
3 "manifest_version": 2,
4 // (必需)插件的名称
5 "name": "demo",
6 // (必需)插件的版本
7 "version": "1.0.0",
8 // 插件描述
9 "description": "简单的Chrome扩展demo",
10 // 图标,一般偷懒全部用一个尺寸的也没问题
11 "icons":
12 {
13 "16": "img/icon.png",
14 "48": "img/icon.png",
15 "128": "img/icon.png"
16 },
17 // 会一直常驻的后台JS或后台页面
18 "background":
19 {
20 // 2种指定方式,如果指定JS,那么会自动生成一个背景页
21 "page": "background.html"
22 //"scripts": ["js/background.js"]
23 },
24 // 浏览器右上角图标设置,browser_action、page_action、app必须三选一
25 "browser_action":
26 {
27 "default_icon": "img/icon.png",
28 // 图标悬停时的标题,可选
29 "default_title": "这是一个示例Chrome插件",
30 "default_popup": "popup.html"
31 },
32 // 当某些特定页面打开才显示的图标
33 /*"page_action":
34 {
35 "default_icon": "img/icon.png",
36 "default_title": "我是pageAction",
37 "default_popup": "popup.html"
38 },*/
39 // 需要直接注入页面的JS
40 "content_scripts":
41 [
42 {
43 //"matches": ["http://*/*", "https://*/*"],
44 // "<all_urls>" 表示匹配所有地址
45 "matches": ["<all_urls>"],
46 // 多个JS按顺序注入
47 "js": ["js/jquery-1.8.3.js", "js/content-script.js"],
48 // JS的注入可以随便一点,但是CSS的注意就要千万小心了,因为一不小心就可能影响全局样式
49 "css": ["css/custom.css"],
50 // 代码注入的时间,可选值: "document_start", "document_end", or "document_idle",最后一个表示页面空闲时,默认document_idle
51 "run_at": "document_start"
52 },
53 // 这里仅仅是为了演示content-script可以配置多个规则
54 {
55 "matches": ["*://*/*.png", "*://*/*.jpg", "*://*/*.gif", "*://*/*.bmp"],
56 "js": ["js/show-image-content-size.js"]
57 }
58 ],
59 // 权限申请
60 "permissions":
61 [
62 "contextMenus", // 右键菜单
63 "tabs", // 标签
64 "notifications", // 通知
65 "webRequest", // web请求
66 "webRequestBlocking",
67 "storage", // 插件本地存储
68 "http://*/*", // 可以通过executeScript或者insertCSS访问的网站
69 "https://*/*" // 可以通过executeScript或者insertCSS访问的网站
70 ],
71 // 普通页面能够直接访问的插件资源列表,如果不设置是无法直接访问的
72 "web_accessible_resources": ["js/inject.js"],
73 // 插件主页,这个很重要,不要浪费了这个免费广告位
74 "homepage_url": "https://www.baidu.com",
75 // 覆盖浏览器默认页面
76 "chrome_url_overrides":
77 {
78 // 覆盖浏览器默认的新标签页
79 "newtab": "newtab.html"
80 },
81 // Chrome40以前的插件配置页写法
82 "options_page": "options.html",
83 // Chrome40以后的插件配置页写法,如果2个都写,新版Chrome只认后面这一个
84 "options_ui":
85 {
86 "page": "options.html",
87 // 添加一些默认的样式,推荐使用
88 "chrome_style": true
89 },
90 // 向地址栏注册一个关键字以提供搜索建议,只能设置一个关键字
91 "omnibox": { "keyword" : "go" },
92 // 默认语言
93 "default_locale": "zh_CN",
94 // devtools页面入口,注意只能指向一个HTML文件,不能是JS文件
95 "devtools_page": "devtools.html"
96}
{
// 需要直接注入页面的JS
"content_scripts":
[
{
//"matches": ["http://*/*", "https://*/*"],
// "<all_urls>" 表示匹配所有地址
"matches": ["<all_urls>"],
// 多个JS按顺序注入
"js": ["js/jquery-1.8.3.js", "js/content-script.js"],
// JS的注入可以随便一点,但是CSS的注意就要千万小心了,因为一不小心就可能影响全局样式
"css": ["css/custom.css"],
// 代码注入的时间,可选值: "document_start", "document_end", or "document_idle",最后一个表示页面空闲时,默认document_idle
"run_at": "document_start"
}
],
}
17 1{
2 // 需要直接注入页面的JS
3 "content_scripts":
4 [
5 {
6 //"matches": ["http://*/*", "https://*/*"],
7 // "<all_urls>" 表示匹配所有地址
8 "matches": ["<all_urls>"],
9 // 多个JS按顺序注入
10 "js": ["js/jquery-1.8.3.js", "js/content-script.js"],
11 // JS的注入可以随便一点,但是CSS的注意就要千万小心了,因为一不小心就可能影响全局样式
12 "css": ["css/custom.css"],
13 // 代码注入的时间,可选值: "document_start", "document_end", or "document_idle",最后一个表示页面空闲时,默认document_idle
14 "run_at": "document_start"
15 }
16 ],
17}
{
// 会一直常驻的后台JS或后台页面
"background":
{
// 2种指定方式,如果指定JS,那么会自动生成一个背景页
"page": "background.html"
//"scripts": ["js/background.js"]
},
}
9 1{
2 // 会一直常驻的后台JS或后台页面
3 "background":
4 {
5 // 2种指定方式,如果指定JS,那么会自动生成一个背景页
6 "page": "background.html"
7 //"scripts": ["js/background.js"]
8 },
9}
// 向页面注入JS
function injectCustomJs(jsPath)
{
jsPath = jsPath || 'js/inject.js';
var temp = document.createElement('script');
temp.setAttribute('type', 'text/javascript');
// 获得的地址类似:chrome-extension://ihcokhadfjfchaeagdoclpnjdiokfakg/js/inject.js
temp.src = chrome.extension.getURL(jsPath);
temp.onload = function()
{
// 放在页面不好看,执行完后移除掉
this.parentNode.removeChild(this);
};
document.head.appendChild(temp);
}
15 1// 向页面注入JS
2function injectCustomJs(jsPath)
3{
4 jsPath = jsPath || 'js/inject.js';
5 var temp = document.createElement('script');
6 temp.setAttribute('type', 'text/javascript');
7 // 获得的地址类似:chrome-extension://ihcokhadfjfchaeagdoclpnjdiokfakg/js/inject.js
8 temp.src = chrome.extension.getURL(jsPath);
9 temp.onload = function()
10 {
11 // 放在页面不好看,执行完后移除掉
12 this.parentNode.removeChild(this);
13 };
14 document.head.appendChild(temp);
15}
{
// 普通页面能够直接访问的插件资源列表,如果不设置是无法直接访问的
"web_accessible_resources": ["js/inject.js"],
}
4 1{
2 // 普通页面能够直接访问的插件资源列表,如果不设置是无法直接访问的
3 "web_accessible_resources": ["js/inject.js"],
4}
{
"name": "动态JS注入演示",
...
"permissions": [
"tabs", "http://*/*", "https://*/*"
],
...
}
8 1{
2 "name": "动态JS注入演示",
3
4 "permissions": [
5 "tabs", "http://*/*", "https://*/*"
6 ],
7
8}
// 动态执行JS代码
chrome.tabs.executeScript(tabId, {code: 'document.body.style.backgroundColor="red"'});
// 动态执行JS文件
chrome.tabs.executeScript(tabId, {file: 'some-script.js'});
4 1// 动态执行JS代码
2chrome.tabs.executeScript(tabId, {code: 'document.body.style.backgroundColor="red"'});
3// 动态执行JS文件
4chrome.tabs.executeScript(tabId, {file: 'some-script.js'});
chrome.runtime.sendMessage({greeting: "您好"}, function(response) {
console.log(response.farewell);
});
3 1chrome.runtime.sendMessage({greeting: "您好"}, function(response) {
2 console.log(response.farewell);
3});
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.tabs.sendMessage(tabs[0].id, {greeting: "您好"}, function(response) {
console.log(response.farewell);
});
});
5 1chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
2 chrome.tabs.sendMessage(tabs[0].id, {greeting: "您好"}, function(response) {
3 console.log(response.farewell);
4 });
5});
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
console.log(sender.tab ?
"来自内容脚本:" + sender.tab.url :
"来自扩展程序");
if (request.greeting == "您好")
sendResponse({farewell: "再见"});
});
8 1chrome.runtime.onMessage.addListener(
2 function(request, sender, sendResponse) {
3 console.log(sender.tab ?
4 "来自内容脚本:" + sender.tab.url :
5 "来自扩展程序");
6 if (request.greeting == "您好")
7 sendResponse({farewell: "再见"});
8 });
<input type="submit" name="btn_submit" value="收藏" id="btn_submit" class="btn_submit" onclick="addwz()"/>
1 1<input type="submit" name="btn_submit" value="收藏" id="btn_submit" class="btn_submit" onclick="addwz()"/>
$('#btn_submit').click(function () {
addwz();
});
3 1$('#btn_submit').click(function () {
2 addwz();
3});
window.onload = function () {
//JS
}
1window.onload = function () {
2 //JS
3}
本文标签:ChromeExtension 入门 浅谈
版权说明: