-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f654333
commit a34e24e
Showing
2 changed files
with
195 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,138 +1,170 @@ | ||
{ | ||
"name": "savetexttofile", | ||
"fullName": "Save Text To File", | ||
"id": "[email protected]", | ||
"description": "Saves highlighted text to a file in a specified directory", | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"version": "2.6.6", | ||
"permissions": { | ||
"private-browsing": true | ||
}, | ||
"preferences": [{ | ||
"name": "fileName", | ||
"title": "File name?", | ||
"type": "string", | ||
"value": "HighlightedText" | ||
}, { | ||
"name": "pathToFile", | ||
"title": "Path to file?", | ||
"type": "directory", | ||
"value": "" | ||
}, { | ||
"name": "hotkey", | ||
"title": "Hotkey", | ||
"type": "string", | ||
"value": "shift-f1" | ||
}, { | ||
"name": "format", | ||
"title": "File format?", | ||
"type": "menulist", | ||
"value": 0, | ||
"options": [{ | ||
"value": "0", | ||
"label": ".txt" | ||
}, { | ||
"value": "1", | ||
"label": ".csv" | ||
}] | ||
}, { | ||
"name": "datestamp", | ||
"title": "Date stamp?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "timestamp", | ||
"title": "Time stamp?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "datestampInLine", | ||
"title": "Date stamp in line?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "timestampInLine", | ||
"title": "Time stamp in line?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "dateFormat", | ||
"title": "Date format?", | ||
"type": "menulist", | ||
"value": 0, | ||
"options": [{ | ||
"value": "0", | ||
"label": "DD-MM-YYYY" | ||
}, { | ||
"value": "1", | ||
"label": "MM-DD-YYYY" | ||
}, { | ||
"value": "2", | ||
"label": "YYYY-MM-DD" | ||
}, { | ||
"value": "3", | ||
"label": "YYYY-DD-MM" | ||
}] | ||
}, { | ||
"name": "lineSeparator", | ||
"title": "Line separator?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "lineSeparatorText", | ||
"title": "Line separator text?", | ||
"type": "string", | ||
"value": "---------------------------------------------------------" | ||
}, { | ||
"name": "currentURL", | ||
"title": "Current URL?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "pagenameForFilename", | ||
"title": "Use pagename as filename?", | ||
"type": "bool", | ||
"value": false | ||
}, { | ||
"name": "showWidget", | ||
"title": "Show widget?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "showNotifications", | ||
"title": "Show notifications?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "confirmPanel", | ||
"title": "Confirm settings?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "html", | ||
"title": "Save selected html text?", | ||
"type": "bool", | ||
"value": false | ||
}, { | ||
"name": "preview", | ||
"title": "Preview text?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "saveMode", | ||
"title": "Save mode?", | ||
"type": "menulist", | ||
"value": 0, | ||
"options": [{ | ||
"value": "0", | ||
"label": "Create" | ||
}, { | ||
"value": "1", | ||
"label": "Append" | ||
}, { | ||
"value": "2", | ||
"label": "Prepend" | ||
}] | ||
}] | ||
"name": "savetexttofile", | ||
"fullName": "Save Text To File", | ||
"id": "[email protected]", | ||
"description": "Saves highlighted text to a file in a specified directory", | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"version": "2.6.7", | ||
"permissions": { | ||
"private-browsing": true | ||
}, | ||
"preferences": [ | ||
{ | ||
"name": "fileName", | ||
"title": "File name?", | ||
"type": "string", | ||
"value": "HighlightedText" | ||
}, | ||
{ | ||
"name": "pathToFile", | ||
"title": "Path to file?", | ||
"type": "directory", | ||
"value": "" | ||
}, | ||
{ | ||
"name": "hotkey", | ||
"title": "Hotkey", | ||
"type": "string", | ||
"value": "shift-f1" | ||
}, | ||
{ | ||
"name": "format", | ||
"title": "File format?", | ||
"type": "menulist", | ||
"value": 0, | ||
"options": [ | ||
{ | ||
"value": "0", | ||
"label": ".txt" | ||
}, | ||
{ | ||
"value": "1", | ||
"label": ".csv" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "datestamp", | ||
"title": "Date stamp?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "timestamp", | ||
"title": "Time stamp?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "datestampInLine", | ||
"title": "Date stamp in line?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "timestampInLine", | ||
"title": "Time stamp in line?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "dateFormat", | ||
"title": "Date format?", | ||
"type": "menulist", | ||
"value": 0, | ||
"options": [ | ||
{ | ||
"value": "0", | ||
"label": "DD-MM-YYYY" | ||
}, | ||
{ | ||
"value": "1", | ||
"label": "MM-DD-YYYY" | ||
}, | ||
{ | ||
"value": "2", | ||
"label": "YYYY-MM-DD" | ||
}, | ||
{ | ||
"value": "3", | ||
"label": "YYYY-DD-MM" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "lineSeparator", | ||
"title": "Line separator?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "lineSeparatorText", | ||
"title": "Line separator text?", | ||
"type": "string", | ||
"value": "---------------------------------------------------------" | ||
}, | ||
{ | ||
"name": "currentURL", | ||
"title": "Current URL?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "pagenameForFilename", | ||
"title": "Use pagename as filename?", | ||
"type": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"name": "showWidget", | ||
"title": "Show widget?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "showNotifications", | ||
"title": "Show notifications?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "confirmPanel", | ||
"title": "Confirm settings?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "html", | ||
"title": "Save selected html text?", | ||
"type": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"name": "preview", | ||
"title": "Preview text?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "saveMode", | ||
"title": "Save mode?", | ||
"type": "menulist", | ||
"value": 0, | ||
"options": [ | ||
{ | ||
"value": "0", | ||
"label": "Create" | ||
}, | ||
{ | ||
"value": "1", | ||
"label": "Append" | ||
}, | ||
{ | ||
"value": "2", | ||
"label": "Prepend" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "save-text-to-file-firefox", | ||
"version": "2.6.6", | ||
"description": "Saves highlighted text to a file in a specified directory", | ||
"main": "addon/lib/main.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bobbyrne01/save-text-to-file-firefox.git" | ||
}, | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"bugs": { | ||
"url": "https://github.com/bobbyrne01/save-text-to-file-firefox/issues" | ||
}, | ||
"homepage": "https://github.com/bobbyrne01/save-text-to-file-firefox", | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-csslint": "^0.4.0", | ||
"grunt-contrib-jshint": "^0.11.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-html-validation": "^0.1.18", | ||
"grunt-jsbeautifier": "^0.2.7", | ||
"grunt-notify": "^0.4.1", | ||
"grunt-release": "^0.12.0" | ||
} | ||
"name": "save-text-to-file-firefox", | ||
"version": "2.6.7", | ||
"description": "Saves highlighted text to a file in a specified directory", | ||
"main": "addon/lib/main.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bobbyrne01/save-text-to-file-firefox.git" | ||
}, | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"bugs": { | ||
"url": "https://github.com/bobbyrne01/save-text-to-file-firefox/issues" | ||
}, | ||
"homepage": "https://github.com/bobbyrne01/save-text-to-file-firefox", | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-csslint": "^0.4.0", | ||
"grunt-contrib-jshint": "^0.11.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-html-validation": "^0.1.18", | ||
"grunt-jsbeautifier": "^0.2.7", | ||
"grunt-notify": "^0.4.1", | ||
"grunt-release": "^0.12.0" | ||
} | ||
} |