Chrome 插件 及 crx 非法安装问题

一个Chrome插件包含以下几个文件

  • manifest.json。 配置文件,名称不可以更改,必须是manifest.json。
  • icon.png。 插件logo,会显示到Chrome 的右上角
  • test.js。 js脚本文件
  • test.html。插件UI界面

创建文件


localhost:~ wany$ cd ~/Desktop/

localhost:Desktop wany$ mkdir chajian
localhost:Desktop wany$ cd chajian/
localhost:chajian wany$ touch manifest.json
localhost:chajian wany$ touch test.js
localhost:chajian wany$ touch test.html
localhost:chajian wany$ ls
manifest.json   test.html   test.js

找一个icon.png 放入chajian文件夹。

编辑内容

manifest.json

{  
  "name": "alert",  
  "version": "1.0.0",  
  "description": "hahahaha",  
  "browser_action": {  
    "default_icon": "icon.png" ,
    "default_title": "alert",
    "default_popup": "test.html"
  }  
} 

test.html




         
    哈哈哈
    


    


test.js

function show(){
    var element = document.createElement("label"); 
    var node = document.createTextNode("添加"); 
    element.appendChild(node); 
    document.body.appendChild(element); 
}

安装

使用chorme访问chrome://extensions/,将chajian文件夹直接拖到浏览器。

chrome 是博主的主浏览器,因为世界各地的开发者为其开发很多好用的插件,可以在使用过程起到举足轻重的作用,但也有很多个人开发和修改版的插件在新版chrome是无法正常使用,今天我们就谈谈如何安装非chrome网上应用店插件的安装及使用,在这里我已unblock-tvb.crx扩展为例
chrome安装unblock-tvb.crx扩展之后会每次启动浏览器都会出现“请停用以开发者模式运行的扩展程序”的提示

|
Chrome 插件 及 crx 非法安装问题_第1张图片
image

)


Chrome 插件 及 crx 非法安装问题_第2张图片
http://cdn.zhangxuebing.cn/chromecrx6.jpg-watermarked.jpg

Chrome 插件 及 crx 非法安装问题_第3张图片
http://cdn.zhangxuebing.cn/chromecrx7.jpg-watermarked.jpg

添加成功之后,即可看到组策略自动刷新
然后在管理模板的左侧列表中找到经典管理模板
Google -> Google Chrome -> 扩展程序
(这里有两个Google Chrome用第一个就好,第二个里面也没有 扩展程序 这一项)
[站外图片上传中...(image-90118b-1529466187307)] 双击打开“配置扩展程序安装白名单,选择已启用 ->要从黑名单中排除的扩展程序id->显示
添加在列表中输入刚才记下的ID值 ,点击确定


Chrome 插件 及 crx 非法安装问题_第4张图片
http://cdn.zhangxuebing.cn/chromecrx9.jpg-watermarked.jpg

然后重启Chrome,可以看到被禁用的扩展现在点击“启用”是有效的,搞定啦!

你可能感兴趣的:(Chrome 插件 及 crx 非法安装问题)