Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Medium Table of Contents",
"version": "1.0.0",
"description": "Automatically generates a table of contents for Medium articles",
"permissions": [
"storage",
"activeTab"
],
"content_scripts": [
{
"matches": [
"*:\/\/medium.com\/*",
"*:\/\/*.medium.com\/*"
],
"js": [
"tocContainerHelper.js",
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Medium TOC Settings"
},
"icons": {
"16": "icons\/16x16.png",
"24": "icons\/24x24.png",
"32": "icons\/32x32.png",
"48": "icons\/48x48.png"
}
}