Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tailscan",
"version": "3.0.1",
"description": "Tailscan is the ultimate developer tool for Tailwind CSS",
"background": {
"service_worker": "background.js",
"type": "module"
},
"manifest_version": 3,
"author": "Tailscan",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js",
"devtoolsCore.js"
]
}
],
"devtools_page": "devtools.html",
"permissions": [
"contextMenus",
"storage",
"scripting",
"activeTab",
"declarativeNetRequestWithHostAccess"
],
"web_accessible_resources": [
{
"resources": [
"content.html",
"content.js",
"output.css",
"\/dist\/*",
"tailwindcss.worker.js",
"\/img\/*"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"host_permissions": [
"https:\/\/*\/",
"http:\/\/*\/"
],
"action": {
"default_icon": {
"16": "tailscan-logo-16.png",
"32": "tailscan-logo-32.png"
},
"default_title": "Press Ctrl(Win)\/Command(Mac)+Shift+X to open Tailscan"
},
"icons": {
"16": "tailscan-logo-16.png",
"32": "tailscan-logo-32.png",
"48": "tailscan-logo-48.png",
"128": "tailscan-logo-128.png"
},
"commands": {
"launch-tailscan": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Launch Tailscan"
}
}
}