Starting analysis...
The extension has a concerning trust profile with only 1,000 users and a poor rating of 2.6 out of 5 stars from 38 reviews, suggesting user dissatisfaction. The lack of developer information and missing last updated date raises transparency concerns. The extension's limited adoption and negative feedback indicate potential quality or functionality issues.
Consider using a more established word counting extension with better ratings and larger user base. If you must use this extension, run it in a separate Chrome profile to isolate it from your main browsing session and sensitive documents. Monitor the extension's behavior closely and be cautious when using it with confidential Google Docs. Look for alternative extensions that use Manifest V3 and have transparent developer information.
https://clients2.google.com/service/update2/crx | https://docs.google.com/ |
{ "name": "Wordcounter", "icons": { "128": "icon.png" }, "version": "1.3", "background": { "scripts": [ "background.js" ], "persistent": false }, "update_url": "https://clients2.google.com/service/update2/crx", "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.", "permissions": [ "activeTab", "storage" ], "browser_action": { "name": "Click to toggle Wordcounter on or off" }, "content_scripts": [ { "js": [ "jquery-3.3.1.min.js", "content.js" ], "css": [ "style.css" ], "matches": [ "https://docs.google.com/*" ] } ], "manifest_version": 2 }