Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Firefox rejecting xpi v0.8 install as "corrupt" #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update firefox link in readme; fix 2 add-on warnings from Mozilla
  • Loading branch information
transce080 committed Jul 23, 2024
commit eee109f7d4e5e8aa44fa23a84e67ff61495f8b3b
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Getting started (firefox from v57)
1. Click this link to start installing.
https://github.com/buggyj/savetiddlers/releases/download/0.8/save_tiddlers-0.8-an.fx.xpi
https://github.com/buggyj/savetiddlers/releases/download/0.11/save_tiddlers-0.11-fx.xpi
2. **Create a subdir called tiddlywikilocations** in the folder firefox uses for downloads (you can see and change this location in firefoxes prefrences).
3. Download a tiddlywiki from http://tiddlywiki.com/, and **place in that subdir**, or copy your tiddlywikis there.
4. The user prefs need to look like similar to this ( If you type 'about:preferences' in the browsers address bar it will take you to the prefs page):
Expand Down
2 changes: 1 addition & 1 deletion extension/contentscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function injectMessageBox(doc) {
doc = document;
if (isTiddlyWikiClassic(doc)) {
s = document.createElement('script');
s.src = chrome.extension.getURL('script.js');
s.src = chrome.runtime.getURL('script.js');
(document.head||document.documentElement).appendChild(s);
s.onload = function() {
s.parentNode.removeChild(s);
Expand Down
6 changes: 3 additions & 3 deletions extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "Save Tiddlers",
"version": "0.11",
"manifest_version": 2,
"applications": {
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "56.0"
"id": "[email protected]",
"strict_min_version": "58.0"
}
},
"browser_action": {
Expand Down