Decolonial Hacker is an intervention into the digital territory of cultural institutions
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",
"description": "Decolonial Hacker is an intervention into the digital territory of cultural institutions",
"manifest_version": 2,
"name": "Decolonial Hacker",
"version": "1.3",
"homepage_url": "https://decolonialhacker.org",
"icons": {
"48": "icons/decolonial-hacker-48.png",
"128": "icons/decolonial-hacker-128.png",
"256": "icons/decolonial-hacker-256.png"
},
"browser_action": {
"default_title": "Decolonial Hacker",
"default_popup": "src/menu.html"
},
"background": {
"scripts": [
"src/libraries/browser-polyfill.js",
"src/scripts/background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/libraries/browser-polyfill.js",
"src/libraries/anime.js",
"src/libraries/terra.js",
"src/scripts/cellular-automata.js",
"src/scripts/content-script.js"
]
}
],
"permissions": [
"activeTab",
"tabs",
"storage"
],
"web_accessible_resources": [
"src/iframe.html",
"src/libraries/browser-polyfill.js",
"src/scripts/iframe.js"
]
}