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": "Rane",
"description": "Custom AI assistant",
"version": "1.0.0",
"permissions": [
"storage",
"tabs",
"activeTab",
"cookies"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": ".\/icons\/icon-16.png",
"48": ".\/icons\/icon-48.png",
"128": ".\/icons\/icon-128.png"
},
"action": {
"default_icon": ".\/assets\/rane-icon-black.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [],
"js": [
"js\/content_script.js"
]
},
{
"matches": [
"https:\/\/rane.ai\/*"
],
"js": [
"js\/rane.ai.js"
]
}
],
"background": {
"service_worker": "js\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"\/assets\/*"
],
"matches": [
"<all_urls>"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/rane.ai\/*"
]
}
}