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",
"description": "Collect text from web page by a simple click and organize them in folders!",
"version": "0.0.1",
"name": "AnyFrag Text",
"manifest_version": 2,
"background": {
"scripts": [
"scripts\/Background.js"
]
},
"browser_action": {
"default_icon": "images\/icon.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"css\/content.css"
],
"js": [
"scripts\/Content.js"
]
}
],
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"web_accessible_resources": [
"images\/icon.png",
"css\/main.css"
]
}