Your personal library, searchable and organized.
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": "Save to Niphtio",
"description": "Your personal library, searchable and organized.",
"version": "2.8.30",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icons/16x16-default.png",
"48": "icons/48x48-default.png",
"128": "icons/128x128-default.png"
}
},
"icons": {
"16": "icons/16x16-default.png",
"48": "icons/48x48-default.png",
"128": "icons/128x128-default.png"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"images/*.*",
"fonts/*.*",
"*"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"optional_permissions": [
"tabs"
],
"permissions": [
"activeTab",
"contextMenus",
"cookies",
"storage",
"scripting"
],
"host_permissions": [
"https://*.nipht.io/",
"https://nipht.io/"
],
"externally_connectable": {
"matches": [
"https://www.nipht.io/*"
]
}
}