How to create a simple
First of all you need to enable developer mode in
OK! Create a directory and put a file called
In the next post I will explain the
#chrome #extension
Chrome
extension?First of all you need to enable developer mode in
Chrome
in order to debug your extension before publishing. Head over 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).OK! Create a directory and put a file called
manifest.json
into it with the below content:{
"name": "Name of the extension",
"description": "Description of the extension",
"version": "1.0",
"background": {
"scripts": [ "background.js" ]
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Your Extension Title"
},
"icons": {
"128": "icon_128.png"
},
"manifest_version": 2,
"permissions": ["activeTab", "tabs", "contextMenus"]
}
background
section is used to link a javascript file to your extension (You need to create a file background.js
in your newly created directory).permissions
section is used when you want specific permissions in your js file. contextMenus
is used to work on menu items related to your extension. tabs
is used to open a new tab on chrome browser.In the next post I will explain the
JS
section.#chrome #extension
How to package Edge extension?
https://docs.microsoft.com/en-us/microsoft-edge/extensions/guides/packaging/using-manifoldjs-to-package-extensions
#microsoft #edge #extension #addon
https://docs.microsoft.com/en-us/microsoft-edge/extensions/guides/packaging/using-manifoldjs-to-package-extensions
#microsoft #edge #extension #addon
Docs
Using ManifoldJS to package extensions - Microsoft Edge Development
See how to package your Microsoft Edge extension in a snap with ManifoldJS, the Node.js open source tool.
How to create Safari Extension?
https://code.tutsplus.com/tutorials/how-to-create-a-safari-extension-from-scratch--net-15050
#apple #safari #extension #addon
https://code.tutsplus.com/tutorials/how-to-create-a-safari-extension-from-scratch--net-15050
#apple #safari #extension #addon
Code Envato Tuts+
How to Create a Safari Extension from Scratch
Safari 5, the latest version of Apple's web browser, introduces extensions. Safari extensions are small add-ons that you can use to expand Safari's capabilities, built using simple HTML, CSS and...