Files

62 lines
1.3 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "Refuse to be Human — Surf the Web as Googlebot",
"short_name": "Refuse to be Human",
"version": "0.0.4",
"description": "Surf the Web as Googlebot. Ever wondered what the Googlebot gets to see online that you do not?",
"homepage_url": "http://1000scores.com/portfolio-items/mediengruppe-bitnik-1000-bots/",
"manifest_version": 3,
"icons": {
"48": "icon_ON_48.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"tabs",
"scripting",
"activeTab",
"declarativeNetRequest",
"declarativeNetRequestFeedback"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_title": "Click to change your browser's perspective",
"default_icon": "icon_OFF_48.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js",
"checkUser.js"
],
"css": [
"rtbh_style.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"rtbh_style.css",
"fonts/*"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "trash@bitnik.org",
"strict_min_version": "55.0"
}
}
}