Medium Plugin
Helpful Medium plugin for viewers
What is Medium Plugin?
Medium Plugin is a Chrome extension developed by https://sangnguyen.dev, and its main feature is "Helpful Medium plugin for viewers".
Extension Screenshots
Download Medium Plugin Extension CRX File
Download Medium Plugin 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
Medium Plugin for Medium viewers. - This extension adds a new button to generate a table of contents for articles you're reading. - Add link button for every paragraph in aricle. - Add button copy for code block.
Extension Basic Information
Name | Medium Plugin |
ID | oipiaoijoipncobppeichegfnnbcbeoa |
Official URL | https://chromewebstore.google.com/detail/medium-plugin/oipiaoijoipncobppeichegfnnbcbeoa |
Description | Helpful Medium plugin for viewers |
File Size | 10.82 KB |
Installation Count | 173 |
Current Version | 1.2.1 |
Last Updated | 2022-11-20 |
Publish Date | 2022-05-03 |
Developer | https://sangnguyen.dev |
[email protected] | |
Payment Type | free |
Extension Website | https://sangnguyen.dev/medium-plugin/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Medium Plugin", "version": "1.2.1", "description": "Helpful Medium plugin for viewers", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/main.js" ], "css": [ "css\/main.css" ], "run_at": "document_end" } ], "content_security_policy": { "script-src": "'self' 'unsafe-eval'", "object-src": "'self'" } } |