// SPDX-License-Identifier: CC0-1.0 // // This is the manifest file of Haketilo. // // Copyright (C) 2021,2022 Wojtek Kosior // // This program is free software: you can redistribute it and/or modify // it under the terms of the CC0 1.0 Universal License as published by // the Creative Commons Corporation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // CC0 1.0 Universal License for more details. #IF !MOZILLA && !CHROMIUM #ERROR Target browser not selected! Please define 'MOZILLA' or 'CHROMIUM'. #ENDIF { #IF MV2 "manifest_version": 2, #ELIF MV3 "manifest_version": 3, #ERROR Manifest version 3 is not yet supported! Please define 'MV2'. #ELSE #ERROR Manifest version not selected! Please define 'MV2'. #ENDIF "name": "Haketilo", "short_name": "Haketilo", "version": #IF CHROMIUM // Chromium requires version to "be between 1-4 dot-separated integers each // between 0 and 65536". Firefox does not impose such rules, hence, when we // make a beta release, we assign it the true version under Firefox // (e.g. "1.0-beta1") and a fake version with 1-lower major and maximal // allowed minor number under Chromium (e.g. 0.65536.1). #INCLUDE_VERBATIM version_chromium #ELSE #INCLUDE_VERBATIM version #ENDIF , "author": "Wojtek Kosior & contributors", "description": "Control your \"Web\" browsing.", #IF MOZILLA "applications": { "gecko": { "id": "{6fe13369-88e9-440f-b837-5012fb3bedec}", "strict_min_version": "60.0" } }, #ENDIF "icons":{ #COPY_FILE icons/haketilo128.png "128": "icons/haketilo128.png", #COPY_FILE icons/haketilo64.png "64": "icons/haketilo64.png", #COPY_FILE icons/haketilo48.png "48": "icons/haketilo48.png", #COPY_FILE icons/haketilo32.png "32": "icons/haketilo32.png", #COPY_FILE icons/haketilo16.png "16": "icons/haketilo16.png" }, "permissions": [ "webRequest", "webRequestBlocking", "tabs", "", "unlimitedStorage" ], "browser_action": { "browser_style": true, "default_icon": { "128": "icons/haketilo128.png", "64": "icons/haketilo64.png", "48": "icons/haketilo48.png", "32": "icons/haketilo32.png", "16": "icons/haketilo16.png" }, "default_title": "Haketilo", // Both popup.html and settings.html depend on file_preview.html. #LOADHTML html/file_preview.html #LOADHTML html/popup.html "default_popup": "html/popup.html" }, "options_ui": { #LOADHTML html/settings.html "page": "html/settings.html", "open_in_tab": true, "browser_style": false }, #IF CHROMIUM && MV2 #COPY_FILE dummy "web_accessible_resources": ["dummy"], #ENDIF "background": { "persistent": true, "scripts": [ #LOADJS background/background.js ] }, "content_scripts": [ { "run_at": "document_start", "matches": [""], "all_frames": true, "js": [ #LOADJS content/content.js ] } ] }