chrome扩展程序_如何创建Chrome扩展程序

chrome扩展程序

by Erika Tan

谭咏麟

如何创建Chrome扩展程序 (How to create a Chrome Extension)

In this article, I will be teaching you how to make a Chrome Extension of your own. I’m basing it off of lessons learned while creating TalkToMe, a Chrome Extension that helps the visually impaired by reading website content and navigating to other web pages.

在本文中,我将教您如何制作自己的Chrome扩展程序 。 我以创建TalkToMe (Chrome扩展程序)的经验教训为基础 ,该程序是Chrome扩展程序,可通过阅读网站内容并导航到其他网页来帮助视障人士。

I’m going to cover the basics of setting up your extension, including:

我将介绍设置扩展程序的基础知识,包括:

  • Configuring the files for setup

    配置文件进行设置
  • Getting it ready to put onto the Chrome store

    准备将其放入Chrome商店

I won’t be covering how to manage audio features, such as handling mic permissions. This has been covered in this article by my friend Palash and also uses the TalkToMe extension as an example.

我不会介绍如何管理音频功能,例如处理麦克风权限。 我的朋友Palash在本文中对此进行了介绍 ,并以TalkToMe扩展为例。

配置文件进行设置 (Configuring the files for setup)

First, go to chrome://extensions in your browser, or simply click “More Tools” and “Extensions” on the Chrome menu. This should lead you to the Extension Management page, where you can turn on Developer Mode (it should be in the top right corner).

首先,在浏览器中转到chrome:// extensions ,或直接在Chrome菜单上单击“更多工具”和“扩展程序”。 这将带您进入“扩展管理”页面,您可以其中打开“开发人员模式” (它应该在右上角)。

Then, you’ll need to make a manifest.json file in a new directory for your extension. This file provides important information for your extension to function, such as permissions and the script files that you’ll be linking your project to. This is what the contents of your manifest should look like:

然后,您需要在新目录中为扩展名创建一个manifest.json文件。 该文件为您的功能扩展提供了重要信息,例如权限和您将项目链接到的脚本文件。 这是清单的内容应如下所示:

{    "name": "Chrome Extension Example",    "version": "1.0",    "description": "Build an Extension!",    "manifest_version": 2}

To upload your directory to the Extension Management page, click the “Load Unpacked” button and select your directory. This will link your files to the web-based UI.

要将目录上传到“扩展管理”页面,请单击“加载解压缩”按钮,然后选择目录。 这会将您的文件链接到基于Web的UI。

Another important file that you’ll have to configure is background.js, which is the background script of your project.

您必须配置的另一个重要文件是background.js ,它是项目的后台脚本。

A sample background script has this type of structure:

示例背景脚本具有以下类型的结构:

chrome.runtime.onInstalled.addListener(function() {    // add an action here});

It will always be running while your extension is turned on and is useful for listening to different events, such as keyboard presses, or for navigating to different pages.

它会在您的扩展程序打开时始终运行,对于侦听不同事件(例如键盘按键)或导航到不同页面很有用。

You can even have multiple background scripts. You just need to register all of them in your manifest file first. To do this, simply structure manifest.js like this, which is what the manifest file to our extension looks like:

您甚至可以拥有多个后台脚本。 您只需要先在清单文件中注册所有这些文件即可。 为此,只需像这样构造manifest.js ,这就是我们扩展名的清单文件的样子:

{    "name": "Chrome Extension Example",    ...
"background": {        "scripts": [            "js/es6-promise.auto.min.js",            "js/defaults.js",            "js/speech.js",            "js/document.js",            "js/events.js",            "js/stt.js",            "js/listen.js"        ],        "persistent": false    }}

Now, you’ll need a file for not just the function of your extension, but also the UI. To do this, make a file called popup.html. The popup is a small window that appears once your extension icon is clicked. For example, here’s the popup for the Cookie Manager Firefox extension.

现在,您不仅需要用于扩展功能的文件,还需要用于UI的文件。 为此,请创建一个名为popup.html的文件。 弹出窗口是一个小的窗口,单击扩展图标后便会出现。 例如,这是Cookie Manager Firefox扩展的弹出窗口。

The popup.html file can be quite simple. Below is some code to make a popup with a single button. It’s as easy as adding opening and closing button tags into the body of the document and a few style rules.

popup.html文件可能非常简单。 以下是一些使单个按钮弹出的代码。 就像在文档正文中添加打开和关闭按钮标签以及一些样式规则一样简单。

<!DOCTYPE html>  <html>    <head>      <style>        button {          height: 30px;          width: 30px;          outline: none;        }      </style>    </head>;    <body>      <button></button>    </body>  </html>

Of course, the popup.html code for our extension has many more components than this. Feel free to add more buttons, stylesheets, and anything else you see fit for your extension idea.

当然,我们扩展的popup.html代码具有更多的组件。 随意添加更多按钮,样式表以及您认为适合扩展概念的任何其他内容。

Time to configure the popup code and the icon. For the icon, however, you’ll need to add code into two places, “default_icon” and “icons”. The “default_icon” property is used for toolbar icons, and “icons” is used for the images displayed on the Extension Management page.

是时候配置弹出代码和图标了。 但是,对于该图标,您需要将代码添加到“ default_icon”和“ icons”两个位置。 “ default_icon”属性用于工具栏图标,“ icons”用于“扩展管理”页面上显示的图像。

Go back to manifest.json and add in the following lines of code, replacing the image paths for the default icon with your own images. You can also put the same images in for both “default_icon” and “icons”. And, you don’t need to put in pictures of the same dimensions as the ones specified below. For example, if you only have images that are 16 x 16 and 48 x 48, feel free to delete the other two lines that specify 32 and 128 pixels.

返回manifest.json并添加以下代码行,用您自己的图像替换默认图标的图像路径。 您也可以为“ default_icon”和“ icons”放入相同的图像。 而且,您不需要放入与以下指定尺寸相同的尺寸的图片。 例如,如果您只有16 x 16和48 x 48的图像,请随时删除指定32和128像素的其他两行。

{   "name": "Chrome Extension Example",    ...
"page_action": {        "default_popup": "popup.html",        "default_icon": {            "16": "images/img16.png",            "32": "images/img32.png",            "48": "images/img48.png",            "128": "images/img128.png"        }    },    "icons": {        "16": "images/img16.png",        "32": "images/img32.png",        "48": "images/img48.png",        "128": "images/img128.png"    }}

So these are the files that are essential in building a chrome extension:

因此,这些是构建chrome扩展程序必不可少的文件:

  • a manifest file,

    清单文件
  • background scripts, and

    后台脚本,以及
  • a popup file

    一个弹出文件

Some other files that you might want to configure are:

您可能要配置的其他一些文件是:

  • options.html and

    options.html

  • options.js

    options.js

options.js will give your users a wider variety of options when it comes to using your extension. It will take care of how your options page looks (it’s very similar to popup.html), while options.js will handle the functionality.

options.js将为您的用户提供使用扩展程序的更多选择。 它将照顾您的选项页面的外观(与popup.html非常相似),而options.js将处理该功能。

These files are optional, but if you decide to add them, don’t forget to configure options.html in the manifest and link your options.js file by adding <script src=”options.js”><;/script> right before your ending HTML tag.

这些文件是可选的,但是如果您决定添加它们,请不要忘记在清单中配置options.html并通过在右边添加<script src=”options.js”>< ; / script>来链接options.js文件<script src=”options.js”><在结束HTML标记之前。

{    "name": "Chrome Extension Example",    ...    "options_page": "options.html"}

To see your extension in action, save all of your files and click “Reload” while you’re on the Extension Management page. You should see your icon in the toolbar. To view your options page, you can also click “Details” under your extension and scroll down to where it says “Extension options”.

要查看扩展程序的运行情况,请保存所有文件,然后在“扩展程序管理”页面上单击“重新加载”。 您应该在工具栏中看到您的图标。 要查看您的选项页面,您还可以单击扩展程序下的“详细信息”,然后向下滚动到显示“扩展程序选项”的位置。

将您的项目发布到网上商店 (Publishing your project to the web store)

So you’ve developed and tested your extension. Now you need to distribute it!

因此,您已经开发并测试了扩展程序。 现在您需要分发它!

To begin uploading your project, first convert it to a .zip file. The file should, at a minimum, contain the manifest.json file. Then, make sure you have a developer account by visiting the Chrome Webstore Developer Dashboard.

要开始上传您的项目,请先将其转换为.zip文件。 该文件至少应包含manifest.json文件。 然后,通过访问Chrome Webstore开发人员信息中心来确保您拥有开发者帐户。

Click the “Add new item” button and it should let you upload your .zip file there. Unless you want to register payments for your app, you can skip the step about setting up a payment system. You will have to pay a $5 one-time developer fee, however, when you put your project onto the web store.

单击“添加新项目”按钮,它应该可以让您将.zip文件上传到此处。 除非您要为您的应用程序注册付款,否则可以跳过有关设置付款系统的步骤。 但是,当您将项目放到网上商店时,必须支付5美元的一次性开发人员费用。

Also, don’t forget to include a detailed description and pictures of your extension so that potential users will know exactly what your project does!

另外,不要忘记提供扩展的详细说明和图片,以便潜在用户确切知道您的项目在做什么!

Once all of this is complete, you’ll receive an app ID and an OAuth token. The app ID is used for making requests to Google APIs, while the OAuth token is used for making Web Store payments.

完成所有这些操作后,您将收到一个应用ID和一个OAuth令牌。 应用程序ID用于向Google API发送请求,而OAuth令牌用于向Web Store付款。

Congratulations, you have now published your extension! ?

恭喜,您现在已经发布了扩展程序! ?

If you enjoyed this post, check out this next article. We’ll be diving deeper into how to configure audio features in your Chrome extension, just like we did for TalkToMe.

如果您喜欢这篇文章,请查看下一篇文章 。 就像我们对TalkToMe所做的一样,我们将深入研究如何在Chrome扩展程序中配置音频功能。

翻译自: https://www.freecodecamp.org/news/how-to-create-a-chrome-extension-part-1-ad2a3a77541/

chrome扩展程序

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393365.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

对‘初学者应该选择哪种编程语言’的回答——计算机达人成长之路(38)

7、PASCAL语言&#xff08;一&#xff09;一门通&#xff0c;门门通 在计算机学习问题排行版上&#xff0c;有一个问题绝对是稳居榜首&#xff0c;每次提出都能在各大论坛掀起一股顶帖风暴&#xff0c;而各大网站的每个网络大牛&#xff0c;都会收到无数学院小弟发来弱弱的提问…

leetcode110. 平衡二叉树(递归)

给定一个二叉树&#xff0c;判断它是否是高度平衡的二叉树。本题中&#xff0c;一棵高度平衡二叉树定义为&#xff1a;一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过1。示例 1:给定二叉树 [3,9,20,null,null,15,7]3/ \9 20/ \15 7 返回 true 。代码 /*** Defi…

spring配置文件注解方式引入的两种方式

一、#{beanID[propertiesName]}方式 <bean id"propertyConfigurer" class"org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name"fileEncoding" value"utf-8" /><property name&…

vsc 搜索特定代码_特定问题的通用解决方案:何时编写代码以及何时编写代码...

vsc 搜索特定代码by Rina Artstain通过丽娜阿斯特斯坦 特定问题的通用解决方案&#xff1a;何时编写代码以及何时编写代码 (Generic solutions to specific problems: when to write some code and when to just do it) There is a traditional story that tells of a rabbi w…

java手动编译jar包_Maven 手动添加第三方依赖包及编译打包和java命令行编译JAVA文件并使用jar命令打包...

一&#xff0c;实例:新建了一个Maven项目,在eclipse中通过 build path –> configure path….将依赖包添加到工程中后&#xff0c;eclipse不报错了。但是用Maven命令 mvn clean compile 时出错如下&#xff1a;原因是在eclipse中添加了 exteneral jar后&#xff0c;还需要在…

SQL like

确定给定的字符串是否与指定的模式匹配。模式可以包含常规字符和通配符字符。模式匹配过程中&#xff0c;常规字符必须与字符串中指定的字符完全匹配。然而&#xff0c;可使用字符串的任意片段匹配通配符。与使用 和 ! 字符串比较运算符相比&#xff0c;使用通配符可使 LIKE 运…

计划备份mysql数据库

1:mysql是我们使用最多的数据库&#xff0c;如果在日常中正确的对mysql数据进行备份&#xff0c;下面我们就来做这事&#xff0c;通过脚本来实现##########################################################################################################################…

leetcode1333. 餐厅过滤器

给你一个餐馆信息数组 restaurants&#xff0c;其中 restaurants[i] [idi, ratingi, veganFriendlyi, pricei, distancei]。你必须使用以下三个过滤器来过滤这些餐馆信息。 其中素食者友好过滤器 veganFriendly 的值可以为 true 或者 false&#xff0c;如果为 true 就意味着你…

3.27下午

转载于:https://www.cnblogs.com/bgd140201228/p/6628194.html

2019春季学期进度报告(十四)

课上花费时间&#xff1a;5h 课下花费时间&#xff1a;6h 学会的新内容&#xff1a;阿里云服务器的购买&#xff0c;websockt入门。 代码量&#xff1a;200h 转载于:https://www.cnblogs.com/Aduorisk/p/11056750.html

rxjs 怎么使用_使用RxJS Observables进行SUPER SAIYAN

rxjs 怎么使用I loved DragonBall Z as a kid, and still love it as an adult. 我从小就爱DragonBall Z&#xff0c;但从小到大仍然喜欢它。 Among the ludicrous number of transformations, the original Super Saiyan remains my favorite. 在可笑的转换数量中&#xff0c…

java编程石头剪刀布_java 开发的石头,剪刀,布的游戏 demo

[java]代码库/** 创建一个类Game&#xff0c;石头&#xff0c;剪刀&#xff0c;布的游戏。*/public class Game {/*** param args*/String[] s {"石头","剪刀","布"};//获取电脑出拳String getComputer(int i){String computerGuess s[i];retur…

JList的基本操作

1.初始化并添加元素 DefaultListModel leftListModelnew DefaultListModel(); String[] items Model.getPairs(); for (int i0; i<items.length; i) { leftListModel.add(i, items[i]); } JList leftLstnew JList(leftListModel); 2.删除所有元素 leftListModel.remove…

请求WebApi的几种方式

请求WebApi的几种方式目前所了解的请求WebAPI的方式有通过后台访问api 和通过js 直接访问api接口 首先介绍下通过后台访问api的方法&#xff0c;可以使用HttpClient的方式也可以使用WebRequest的方式 1、HttpClient的方式 &#xff08;1&#xff09;Get请求 string url "…

Django第三篇

前端反向解析 应用场景&#xff1a;通过访问a路由&#xff0c;到达a的对应视图函数&#xff0c;函数到达对应的前端a标签 a标签的路径是b路由&#xff0c;如果我们在后端改变b路由的路径&#xff0c;那么a标签便无法访问 到b路由&#xff0c;只能手动在前端改变a标签的路径&…

leetcode792. 匹配子序列的单词数

给定字符串 S 和单词字典 words, 求 words[i] 中是 S 的子序列的单词个数。 示例: 输入: S “abcde” words [“a”, “bb”, “acd”, “ace”] 输出: 3 解释: 有三个是 S 的子序列的单词: “a”, “acd”, “ace”。 class Solution {public int numMatchingSubseq(Strin…

react context_使用React Context API-入门

react contextLets use the React Context API to change theme in an app!让我们使用React Context API更改应用程序中的主题&#xff01; 但是首先&#xff0c;一些背景 &#xff01; &#xff1f; (But first, some context! ?) Ok terrible puns aside lets have a look …

redis本地及远程登录

redis默认只能localhost登录&#xff0c;所以需要开启远程登录。解决方法如下&#xff1a;一、在redis的配置文件redis.conf中&#xff0c;找到bind 127.0.0.11、去掉 #bind 127.0.0.1前面的#号注释&#xff0c;将bind 127.0.0.1 改成了bind 0.0.0.0&#xff08;这样不限制连接…

java初始化变量n_java中预构造函数初始化变量的属性

在Java中,可以在调用构造函数之前初始化编程变量.public class StockGraph extends JPanel {public boolean runUpdates true;double TickMarks 18;double MiddleTick TickMarks / 2;double PriceInterval 5;double StockMaximum;double StockMinimum;Random testStockValu…

烦了

桃花飞绿水 一庭芳草围新绿 有情芍药含春泪 野竹上青霄 十亩藤花落古香 无力蔷薇卧晓枝 我愿暂求造化力 减却牡丹妖艳色 花非花 梦非梦 花如梦 梦似花 梦里有花 花开如梦 心非心 镜非镜 心如镜 镜似心 镜中有心 心如明镜 ​​转载于:https://www.cnblogs.com/langdao/p/1099281…