Inspect and view changes in Hoasted Check 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Hoasted Check",
"description": "Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted",
"version": "1.1.4",
"manifest_version": 2,
"icons": {
"128": "images/orange-cloud-128.png"
},
"permissions": [
"tabs",
"webNavigation",
"webRequest",
"http://*/",
"https://*/"
],
"background": {
"page": "background.html",
"persistent": true
},
"page_action": {
"default_title": "Hoasted"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentscript.js"
],
"run_at": "document_start"
}
],
"options_page": "options.html",
"content_security_policy": "object-src 'self'; script-src 'self' 'unsafe-eval';"
}