The web extension is intended for browser-based automation of processes on web pages and for executing custom scripts.
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",
"homepage_url": "https://grabli.app/",
"version": "2.0.6",
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"description": "__MSG_extDescription__",
"manifest_version": 2,
"author": "grabli developers",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+Shift+O",
"mac": "Alt+Shift+O",
"chromeos": "Alt+Shift+O",
"linux": "Alt+Shift+O"
}
}
},
"icons": {
"16": "icons/button.png",
"32": "icons/icon32.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icons/button.png",
"default_title": "Grabli",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"browser-polyfill.js",
"content.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"permissions": [
"storage",
"*://*/",
"activeTab",
"webNavigation",
"webRequestBlocking",
"webRequest",
"notifications"
],
"content_security_policy": "style-src 'self' 'unsafe-inline' data: blob:; script-src 'self' https://grabli.app; object-src 'self' 'unsafe-eval'; child-src 'self' 'unsafe-eval' data: blob:",
"web_accessible_resources": [
"jquery-3.5.1.js",
"hotkeys.js",
"mainCore.js",
"main.css",
"images/*.png",
"images/*.jpg"
],
"minimum_chrome_version": "58"
}