博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
chrome 浏览器插件开发
阅读量:6257 次
发布时间:2019-06-22

本文共 708 字,大约阅读时间需要 2 分钟。

一、chrome 浏览器插件开发是什么

  1  从技术上说插件只是一个存在于本地的一个网站、所以呢在插件开发的过程中用到的技术无非是 javascript 、html 、css 。

  

二、把当前活动页面的背景变蓝

  1  manifest.json

{    "name":"bluer",    "version":"0.17.06.0",    "description":"make the current page buler",    "permissions":["activeTab"],    "background":{        "scripts":["background.js"],        "persistent":false    },    "browser_action":{        "default_title":"click make the page blue ",        "default_icon":"pbc.png"    },    "manifest_version":2}

 

  2  background.js

chrome.browserAction.onClicked.addListener(function(tab) {    console.log('Turning' + tab.url + 'blue!');    chrome.tabs.executeScript({        code:'document.body.style.backgroundColor="blue"'    });});

 

 

 

----

转载地址:http://ahtsa.baihongyu.com/

你可能感兴趣的文章
在高并发、高负载的情况下,如何给表添加字段并设置DEFAULT值?
查看>>
Cocos2d-x 3.0final 终结者系列教程13-贪食蛇游戏案例(全)
查看>>
Nginx的try_files指令和命名location使用实例
查看>>
IO多路复用之select
查看>>
pd_ds中的hash
查看>>
买书不读是一种什么病?
查看>>
微信接口开发报错invalid credential, access_token is invalid or not latest hint
查看>>
nohup 部署springboot 使用命令
查看>>
MQ产品比较-ActiveMQ-RocketMQ
查看>>
暂时没有想好呢。
查看>>
windows服务 MVC之@Html.Raw()用法 文件流的读写 简单工厂和工厂模式对比
查看>>
PHP解析URL并得到URL中的参数
查看>>
【vue.js】绑定click事件
查看>>
字体属性
查看>>
linux的iptables和firewall的区别
查看>>
Install RabbitMQ server in CentOS 7
查看>>
Eureka的优势
查看>>
Android项目实战(一): SpannableString与SpannableStringBuilder
查看>>
idea中的language level 介绍
查看>>
CTSC 2018酱油记
查看>>