美文网首页
Chrome 插件 及 crx 非法安装问题

Chrome 插件 及 crx 非法安装问题

作者: 灰斗儿 | 来源:发表于2016-09-16 00:41 被阅读57次

    一个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

    <!DOCTYPE html>
    <html>
    <head>
             <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
        <title>哈哈哈</title>
        <script src="test.js"></script>
    </head>
    <body>
        <button type="button" onclick="show()">Click Me!</button>
    </body>
    </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扩展之后会每次启动浏览器都会出现“请停用以开发者模式运行的扩展程序”的提示

    | image

    )


    http://cdn.zhangxuebing.cn/chromecrx6.jpg-watermarked.jpg
    http://cdn.zhangxuebing.cn/chromecrx7.jpg-watermarked.jpg

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


    http://cdn.zhangxuebing.cn/chromecrx9.jpg-watermarked.jpg
    然后重启Chrome,可以看到被禁用的扩展现在点击“启用”是有效的,搞定啦!

    相关文章

      网友评论

          本文标题:Chrome 插件 及 crx 非法安装问题

          本文链接:https://www.haomeiwen.com/subject/punbettx.html