|
|
|
|
|
by tsenart
5576 days ago
|
|
About that... I make no use of the user's browser history. But I need the "tabs" permissions. I also have to be able to access all urls. I could indeed access all your history and data with these permissions but that's a byproduct of the functioning and intent of the extension. I make no such thing... Just highlight code. Here is my manifest.json {
"name": "Sight",
"version": "1.6.3",
"description": "The Syntax Highlighter for Chrome",
"minimum_chrome_version": "8",
"background_page": "background.html",
"options_page": "options.html",
"permissions": ["tabs", "<all_urls>"],
"page_action": {
"default_title": "Change language",
"default_icon": "images/icon19.png",
"default_popup": "popup.html"
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
} |
|