Inspect and view changes in Yet Another Hints Extension source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Yet Another Hints Extension",
"short_name": "YAHE",
"manifest_version": 3,
"description": "A simple hit-a-hint extension",
"options_ui": {
"page": "options/index.html",
"open_in_tab": false
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"host_permissions": [
"*://*/*"
],
"permissions": [
"storage"
],
"content_scripts": [
{
"match_about_blank": true,
"matches": [
"http://*/*",
"https://*/*",
"file://*/*"
],
"css": [
"yahe.css"
],
"js": [
"yahe.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"background": {
"service_worker": "yahe-bg.js"
},
"version": "2.0.0",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}