随笔分类 - Chrome插件开发
摘要:https://justcode.ikeepstudying.com/2017/05/chrome-extension-%E4%BA%8B%E4%BB%B6%E4%BA%A4%E4%BA%92%E5%AE%9E%E4%BE%8B-%EF%BC%88sendmessage%EF%BC%8Cconnec
阅读全文
摘要:https://www.cnblogs.com/liuxianan/p/chrome-plugin-develop.html
阅读全文
摘要:https://blog.csdn.net/summerxiachen/article/details/78698878 popup不能接收到contentscript 发送的消息, 如果这时contentscript还使用了消息回调参数, 则会收到 Unchecked runtime.lastEr
阅读全文
摘要:https://blog.csdn.net/qustdong/article/details/46046553
阅读全文
摘要:常用设置 "manifest_version" : 2 //用于设置chrome扩展的版本, 默认值为2, 不可修改, 不带引号 "name": "myExt" // 扩展的名称, 在chrome扩展列表中展示 "version": "0.0.1", // 扩展的版本号, 最多4个用点隔开的数字,
阅读全文
摘要:开发Chrome插件很简单,只要会web开发(html+javascript+css)那么这个就是能驾轻就熟,只需要了解一下插件具体的运行环境及要求就OK了.1.先创建一个html文件,名字随便取,如index.html,内容如下 Hello world! 2.在创建一个名为manifest.json文件,这个名字一个字不能错.这个文件是插件的必须文件,可以理解为启动配置文件.内容如下{ "manifest_version": 2, "name": "Holle world", "version": "0
阅读全文