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": "Word Counter Plus+",
"version": "1.0",
"description": "Provides a right click context menu to get stats on the selected text",
"icons": {
"16": ".\/icon\/icon_16.png",
"48": ".\/icon\/icon_48.png",
"128": ".\/icon\/icon_128.png"
},
"author": "Steven Roberts",
"background": {
"service_worker": "background.js"
},
"minimum_chrome_version": "88",
"offline_enabled": true,
"permissions": [
"contextMenus",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}