1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
hipchat-emoticons-for-all/chrome/build-manifest.py

39 lines
810 B
Python

import json
with open("../package.json") as json_file:
project_package = json.load(json_file)
with open("manifest.json") as json_file:
manifest = json.load(json_file)
switcher = {
'name': 'name',
'version': 'version',
'description': 'description',
}
for key, value in enumerate(switcher):
manifest[value] = project_package[key]
with open("data/site-decoder.json") as json_file:
site_decoder = json.load(json_file)
content_scripts = []
for ident, script in enumerate(site_decoder):
temp = {}
temp['matches'] = [ident]
temp['js'] = ['data/lib/jquery.js', 'data/image_lookup.js', 'data/injections/' + script]
content_scripts.append(temp)
manifest['content_scripts'] = content_scripts
with open('package.json', 'w') as file:
json.dump(manifest, file)