Простое расширение, которое позволяет быстро увидеть, бот ли пользователь в комментариях.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Это бот?",
"description": "Простое расширение, которое позволяет быстро увидеть, бот ли пользователь в комментариях.",
"manifest_version": 2,
"version": "1.1.4",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png"
},
"default_popup": "popup.html"
},
"permissions": [
"storage",
"tabs",
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"short_name": "VC bots",
"content_scripts": [
{
"matches": [
"*://vc.ru/*",
"*://tjournal.ru/*",
"*://dtf.ru/*"
],
"js": [
"content.js"
],
"css": [
"vcbf.css"
],
"run_at": "document_idle"
}
]
}