Installation Method:
Access through chrome
Https://chrome.google.com/extensions/detail/pjkoglpbigbjijmncfkcpkcpddnelgbm? Hl = ZH-CN
[JSON format/compression] Tool
Install in chrome
1. Create a new folder
2. Create a file named manifest. JSON
3. Open the manifest. JSON file, which can be understood as a configuration file.
Includes the following contentCopyCodeThe Code is as follows :{
"Name": "My first extension", // extension name
"Version": "1.0", // version
"Description": "JSON format", // description
"Browser_action": {// operations on the browser
"Default_icon": "icon.png", // icon
"Popup": "json.html" // html file
}
}
4. Select a PNG image you like.
5. Create an HTML file (the core code is in it, and chrome extension is written in JS)
Now the Lib folder contains three files (icon.png, json.html, manifest. JSON );
6 bytes open chrome.exe (tool-> ExtensionProgram(E)-> click "Developer mode" and select the Extended Program under development.) debug the program.
7. Upload the extension you developed, https://chrome.google.com/extensions/, and select the left side (publish the extension ),
Upload your ZIP folder (libfolder to lib.zip, which must be a zip file. Make sure that the file containing the Chinese name cannot appear in the same directory. Otherwise, the upload will fail !)