Connect to Scrypta Ecosystem directly from your browser.
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": "ScryptaID",
"description": "Connect to Scrypta Ecosystem directly from your browser.",
"version": "1.0.4",
"manifest_version": 2,
"icons": {
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"browser_action": {
"default_title": "ScryptaID",
"default_popup": "scrypta/id.html"
},
"permissions": [
"storage",
"activeTab",
"*://*.scryptachain.org/*",
"*://*.manent.app/*",
"*://*.scrypta.id/*",
"*://*.scrypta.me/*",
"*://*.localhost:*/*"
],
"content_scripts": [
{
"matches": [
"*://*.scryptachain.org/*",
"*://*.manent.app/*",
"*://*.scrypta.id/*",
"*://*.scrypta.me/*",
"*://*.localhost:*/*"
],
"js": [
"storage.js"
]
}
]
}