Chrome插件14:在特定页面显示插件

主文件


"page_action": {
	"default_icon":"img/1.png",
	"default_title":"Qz第一个插件",
	"default_popup": "html/main.html"
 },

 "permissions": [
	"contextMenus",
	"tabs",
	"notifications",
	"*://*/*",
	"http://*/*",
	"https://*/*",
	"declarativeContent"
 ],

修改
在这里插入图片描述

js

//当应用第一次安装、更新至新版本或浏览器更新至新版本时产生。
chrome.runtime.onInstalled.addListener(function() {
    chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
        // With a new rule ...
        chrome.declarativeContent.onPageChanged.addRules([
        {
            // 注册规则,当且仅当列出的所有条件都满足时,PageStateMatcher 才会匹配网页,即当url为baidu.com ,即触发执行某个操作(目前只有 ShowPageAction)。
            // That fires when a page's URL contains a 'g' ...
            conditions: [
                new chrome.declarativeContent.PageStateMatcher({
                    pageUrl: { urlContains: 'baidu.com' },
                })
            ],
            // And shows the extension's page action.
            actions: [ new chrome.declarativeContent.ShowPageAction() ]
        }
        ]);
    });
});
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值