Inspect and view changes in LinksVisited@Dook source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Last visited/bookmarked date for each link on the page",
"manifest_version": 2,
"name": "LinksVisited@Dook",
"version": "1.4.2",
"icons": {
"48": "icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "LinksVisited@Dook",
"strict_min_version": "100.0"
}
},
"web_accessible_resources": [
"icon.png"
],
"permissions": [
"<all_urls>",
"tabs",
"activeTab",
"storage",
"webNavigation",
"webRequest",
"notifications",
"contextMenus",
"menus",
"downloads",
"history",
"bookmarks"
],
"content_scripts": [
{
"all_frames": true,
"match_about_blank": true,
"matches": [
"<all_urls>"
],
"js": [
"common.jsm",
"common2.jsm",
"content.jsm"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"common.jsm",
"common2.jsm",
"background.jsm"
]
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "LinksVisited@Dook",
"default_popup": "action.html",
"browser_style": true
},
"commands": {}
}