Installation method:
Access with Chrome browser
Https://chrome.google.com/extensions/detail/pjkoglpbigbjijmncfkcpkcpddnelgbm?hl=zh-cn
JSON Format/Compress tool
Install:) under Chrome
1, to build a new folder
2, the establishment of a document named Manifest.json
3, open this Manifest.json file, can be understood as a configuration file:)
Contains the following contents
Copy Code code as follows:
{
' Name ': ' My first Extension ',//Extended Name
"Version": "1.0",//version
"description": "JSON format",//Description
"Browser_action": {//Action on browser
"Default_icon": "Icon.png",//Icon
"Popup": "json.html"//html file
}
}
4, pick a favorite PNG picture
5, build an HTML file (the core code is inside, the Chrome extension is written in JS)
There are now three files in the Lib folder (Icon.png,json.html,manifest.json);
6, open the Chrome.exe (Tool-> Extender (E)-> Click Developer Mode, select the expansion program being developed), and then debug it
7, upload your development of the extension, https://chrome.google.com/extensions/, select the left side (release extension program),
Login can upload your pack with folder (Lib folder compressed into Lib.zip, must be zip, and ensure that the same directory can not appear with the Chinese name of the file, or upload unsuccessful!)