Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "rikaikun",
"version": "3.2.14",
"minimum_chrome_version": "109",
"description": "rikaikun shows the reading and English definition of Japanese words when you hover over Japanese text in the browser.",
"icons": {
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"offline_enabled": true,
"permissions": [
"clipboardWrite",
"storage",
"offscreen"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"\/\/": "If only one icon available, setting default_icon to string is allowed.",
"default_icon": "images\/ba.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"match_about_blank": true,
"js": [
"rikaicontent.js"
],
"all_frames": true
},
{
"matches": [
"https:\/\/docs.google.com\/*"
],
"js": [
"docs-annotate-canvas.js"
],
"run_at": "document_start",
"all_frames": true,
"world": "MAIN"
}
],
"web_accessible_resources": [
{
"resources": [
"css\/popup.css"
],
"matches": [
"<all_urls>"
]
}
]
}