Jocker Extension
Jike Web Tool
What is Jocker Extension?
Jocker Extension is a Chrome extension developed by Soyaine, and its main feature is "Jike Web Tool".
Extension Screenshots
Download Jocker Extension Extension CRX File
Download Jocker Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
换一种方式重温你过往的即刻动态。 入口: 安装后打开即刻网页版个人页面 https://web.okjike.com/me ,登录后,右下角会出现即刻抽屉的图标,点它就可以打开了。 更新日志: v3.1.0 支持 - 可以查看导出收藏的动态了,并且可以按作者分类查看 - 按年份查看动态 - 动态中包含 #标签 的情况,也可以按标签查看了 v3.0.0 支持 - 按主题查看自己的动态 - 按主题导出自己的文字动态,以csv文件格式 - 按主题查看自己发过的图片 - 查看自己往年今日的动态 GitHub: https://github.com/soyaine/jocker-chrome-extension 赞助开发者:http://afdian.net/@soyaine
Extension Basic Information
Name | Jocker Extension |
ID | pnglcgpgmedjmknpknjedmkggedgdlpk |
Official URL | https://chromewebstore.google.com/detail/jocker-extension/pnglcgpgmedjmknpknjedmkggedgdlpk |
Description | Jike Web Tool |
File Size | 48.78 KB |
Installation Count | 426 |
Current Version | 3.1.2 |
Last Updated | 2024-01-05 |
Publish Date | 2021-03-23 |
Rating | 4.97/5 Total 29 Ratings |
Developer | Soyaine |
[email protected] | |
Payment Type | free |
Extension Website | https://soyaine.github.io/jocker-chrome-extension/ |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jocker Extension", "description": "Jike Web Tool", "version": "3.1.2", "manifest_version": 3, "icons": { "256": "icon256.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": "icon256.png" }, "content_scripts": [ { "matches": [ "https:\/\/web.okjike.com\/*" ], "run_at": "document_start", "js": [ "me.js" ], "css": [ "me.css" ] } ], "permissions": [ "tabs", "storage" ], "web_accessible_resources": [ { "resources": [ "icon256.png" ], "matches": [ "https:\/\/*\/*" ] } ], "host_permissions": [ "https:\/\/web.okjike.com\/", "https:\/\/web-api.okjike.com\/" ] } |